码迷,mamicode.com
首页 > 其他好文 > 详细

【leetcode】删除最外层的括号

时间:2020-09-17 19:23:34      阅读:21      评论:0      收藏:0      [点我收藏+]

标签:strlen   outer   move   import   turn   eof   int   tco   sizeof   

 

char * removeOuterParentheses(char * S){
    int len = strlen(S),count=1,n=0;
    char* ret = (char*)calloc(len,sizeof(char*));
    for (int i=1; i<len; i++)
    {
        (S[i] == ()? count++: count--;
        if(count) ret[n++] = S[i];
        else count=1,i++; 
    }
    return ret;
}

 

【leetcode】删除最外层的括号

标签:strlen   outer   move   import   turn   eof   int   tco   sizeof   

原文地址:https://www.cnblogs.com/ganxiang/p/13636960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!