string stack操作要注重细节问题

A string S consisting of N characters is considered to be properly nested if any of the following conditions is true:

  • S is empty;
  • S has the form "(U)" or "[U]" or "{U}" where U is a properly nested string;
  • S has the form "VW" where V and W are properly nested strings.

For example, the string "{[()()]}" is properly nested but "([)()]" is not.

Write a function:

int solution(char *S);

that, given a string S consisting of N characters, returns 1 if S is properly nested and 0 otherwise.

For example, given S = "{[()()]}", the function should return 1 and given S = "([)()]", the function should return 0, as explained above.

Assume that:

  • N is an integer within the range [0..200,000];
  • string S consists only of the following characters: "(", "{", "[", "]", "}" and/or ")".

Complexity:

  • expected worst-case time complexity is O(N);
  • expected worst-case space complexity is O(N) (not counting the storage required for input arguments).

Copyright 2009–2015 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.

1. 需要注意的细节:

a.每次peek后,需要检查时候为NULL,如果缺少这一步检查而直接进行 myNode->x 操作,会产生段错误。

b.注意str的对称性问题,并不是每一次循环正常结束都是正确的,有可能存在右括号少的情况,需要判断如果stack不为空,则返回false;

c.要注意temp必须每一次都++,否则循环不能正常进行。

2.代码:

  1 // you can write to stdout for debugging purposes, e.g.
  2 // printf("this is a debug message\n");
  3 #include <stdlib.h>
  4
  5 typedef struct node{
  6     char x;
  7     struct node* next;
  8 }tnode;
  9
 10 typedef struct stack{
 11     tnode *top;
 12     tnode *bottom;
 13 }tStack;
 14
 15 void push(tnode *N,tStack *S)
 16 {
 17     if(S->top == NULL)
 18     {
 19         S->top = N;
 20         S->bottom = N;
 21     }
 22     else
 23     {
 24         N->next = S->top;
 25         S->top = N;
 26     }
 27 }
 28
 29 tnode *peek(tStack *S)
 30 {
 31     if(S->top == NULL)
 32     {
 33         return NULL;
 34     }
 35     else
 36     {
 37         return S->top;
 38     }
 39 }
 40
 41 tnode *pop(tStack *S)
 42 {
 43     if(S->top == NULL)
 44     {
 45         return NULL;
 46     }
 47     if(S->top == S->bottom)
 48     {
 49         tnode *temp = S->top;
 50         S->top = NULL;
 51         S->bottom = NULL;
 52         return temp;
 53     }
 54     else
 55     {
 56         tnode *temp = S->top;
 57         S->top = S->top->next;
 58         return temp;
 59     }
 60 }
 61
 62 int solution(char *S) {
 63     // write your code in C99
 64
 65     tStack *myStack = malloc(sizeof(tStack));
 66     myStack->top = NULL;
 67     myStack->bottom = NULL;
 68
 69     // int len = strlen(S);
 70     char *temp = S;
 71     tnode *myNode = NULL;
 72     // int i;
 73     while(*temp)
 74     {
 75         // printf("%c\n",*temp);
 76         if(*temp == ‘(‘ || *temp == ‘[‘ ||*temp == ‘{‘)
 77         {
 78             myNode = malloc(sizeof(tnode));
 79             myNode->x = *temp;
 80             push(myNode,myStack);
 81         }
 82         else
 83         {
 84             myNode = peek(myStack);
 85             if(myNode == NULL)
 86             {
 87                 return 0;
 88             }
 89             if(*temp == ‘)‘)
 90             {
 91                 if(myNode->x == ‘(‘)
 92                 {
 93                     myNode = pop(myStack);
 94                 }
 95                 else
 96                 {
 97                     return 0;
 98                 }
 99             }
100             if(*temp == ‘]‘)
101             {
102                 if(myNode->x == ‘[‘)
103                 {
104                     myNode = pop(myStack);
105                 }
106                 else
107                 {
108                     return 0;
109                 }
110             }
111             if(*temp == ‘}‘)
112             {
113                 if(myNode->x == ‘{‘)
114                 {
115                     myNode = pop(myStack);
116                 }
117                 else
118                 {
119                     return 0;
120                 }
121             }
122         }
123
124         temp++;
125     }
126     myNode = peek(myStack);
127     if(myNode == NULL)
128     {
129         return 1;
130     }
131     else
132     {
133         return 0;
134     }
135
136 }
时间: 2024-10-10 13:42:00

string stack操作要注重细节问题的相关文章

Scala 深入浅出实战经典 第39讲:ListBuffer、ArrayBuffer、Queue、Stack操作代码实战

王家林亲授<DT大数据梦工厂>大数据实战视频 Scala 深入浅出实战经典(1-64讲)完整视频.PPT.代码下载:百度云盘:http://pan.baidu.com/s/1c0noOt6 腾讯微云:http://url.cn/TnGbdC 360云盘:http://yunpan.cn/cQ4c2UALDjSKy 访问密码 45e2 技术爱好者尤其是大数据爱好者 可以加DT大数据梦工厂的qq群 DT大数据梦工厂① :462923555 DT大数据梦工厂②:437123764 DT大数据梦工厂③

使用 redis (基础, key操作, string类型操作)

使用redis set 类型: 没有重复元素 list 链表类型 有重复累型 sort set 类型 没有重复元素 1.1 存储数据 读取数据 // 数据储存在 内存中 set name laowen // OK 表示成功 set age 22    // ok 表示成功 set add beijing // OK 表示成功 get name // "laowen" 表示获取成功 get age // "22" 表示获取成功 get addr // "be

Atitit.注重细节还是关注长远??长远优先

1. 注重细节的误区 1 1.1. 如果连aaa都做不好,那么怎么能够相信你ccc 2 1.2. 一屋不扫何以扫天下??但是扫大街的都是保洁员 2 2. 注重细节的缺点 2 2.1. 缺失大局观,限于战术而不能做战略活动 2 2.2. 只见树木,不见森林 2 2.3. 会忽略事情的全部及方向,以至于无法完成整个事情 2 2.4. 完美是完成的敌人 2 2.5. 陷入微观管理"("对细节予以很大的或者过度的控制与关注"的管理 2 2.6. 一盘散沙 2 2.7. 陷入"

string系列操作

一.Move操作 <1> var pSource,pDest:PChar; len: integer; .......................//一些代码 Move(pSource,pDest,len); //错误 Move(pSource^,pDest^,len); //正确,根据Move函数:  S := PChar(@Source);也可以这样 <2> var a1,a2:array of char; ......  SetLength(a1,len);  SetLe

reverse words in a string(java 注意一些细节处理)

题目:reverse words in a string Given an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky the". 解析:将字符串中的单词逆序输出 借助一个堆栈,从前向后遍历字符串,遇到空,跳过,直到非空字符,拼接word,等再次遇到空时,得到一个word,加入堆栈, 以此类推,直到

String字符串操作

char chars[] ={'a','b','c'}; String s = new String(chars); int len = s.length();//字符串长度 System.out.println(chars);//ab System.out.println(s);//abc System.out.println(len);//3 char ch = "zhangpei".charAt(5);下标从0开始 System.out.println(ch);//p Strin

string的+操作与StringBuilder对象

习惯在C#代码中写str+="xxx";这样代码的请注意啦,如果这种操作是针对单个变量作很多次叠加操作的,很有可能导致性能降低. 大家都知道string与StringBuilder的区别,这里就不说了,来看看例子,震撼一下: 分别是测试普通字符串进行5w次叠加操作 vs StringBuilder进行5w次Append操作: 可以看到,普通string操作是花了67秒(我双核CPU).StringBuilder是0.04秒.... 再看看对于string是否会被回收方面的测试,由图中也

string常用操作

十四.string常用操作 set key1 szk  #给key1赋值为szk get key1    #获取这个值value set key1 yc  #一个key对应一个value,多次赋值,会覆盖前面的value setex key3 10 1   #用来给key设定过期时间10秒 ttl key3查看时间 mset key1 1 key2 2 key3 3    #同时设置多个key mget key1 key2 key3 1) "1"2) "2" 3)

string 类操作的重载实现及其提供的其他常用成员函数

目录 1,string 类操作的重载实现 2,String类提供的其他常用成员函数 @ 1,string 类操作的重载实现 /* string 类操作的重载实现 */ class CMyString { public: CMyString(char *ptr = NULL) { if (ptr == NULL) { mpStr = new char[1]; *mpStr = '\0'; } else { mpStr = new char[strlen(ptr) + 1]; strcpy(mpSt