我有一个字符串,它是一个openstruct对象。如何将其再次转换为openstruct?
List item
这是一个字符串我怎么能再次将它转换为openstruct对象,以便我可以访问值
recTest(a,0,4) in the end calls recTest(a,2,4)=>false as the condition is if(a[2]>a[3])=> 8>7 => false
recTest(a,1,4) in the end calls recTest(a,2,4)=>false
recTest(a,2,4) if(a[2]>a[3])=> 8>7 => false
recTest(a,3,4) if(a[3]>a[4])=> 7>9(false) => recTest(a,4,4) i=j=> true
recTest(a,4,4) returns true [base case]