Programming note: problems related to couting the pairs of {}

Programming note: problems related to couting the pairs of {}

今天继续做作业, 遇到 couting  {} 的问题, 自己的解决方法太笨拙, 把自己总结的别人的方法记录一下:


int  a;  // record the pos of '{'

int  b  =  a;  // record the pos of the matched '}'

int  open  =   1 // record the number of {}

while  ( open  >   0  )  {
    
    b
++;
    
if ( s[b] == '}' ) {
        open
--;
    }
 
    
else if ( s[b] == '{' ) {
        open
++;
    }

  
}

 

你可能感兴趣的:(Programming note: problems related to couting the pairs of {})