故我


私信TA

用户名:uq_37592642929

访问量:2988

签 名:

一起去啊,更远方的地方!!!!

等  级
排  名 706
经  验 3910
参赛次数 0
文章发表 53
年  龄 0
在职情况 学生
学  校 社会大学
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

#include <stdio.h>

#define len sizeof (Stack)

typedef struct s{

    char data[300];

    int top;

}Stack;

void creat(){

    char a[1000];

    Stack *h;

    h=(Stack *)malloc(len);

    h->top=-1;

    gets(a);

    for (int i=0;a[i]!='\0';i++){

        if (a[i]=='('){

            h->top++;

            h->data[h->top]=a[i];

        }

        if (a[i]==')'){

            h->top--;

        }

    }

    if (h->top==-1){

        printf ("YES");

    }else{

        printf ("NO");

    }

}

int main (){

    creat();

}


 

0.0分

0 人评分

  评论区

  • «
  • »