C语言的题目不会做啊 15

Writeafunctionboolparenthesis(charstr[])thattakesinastringcontainingparentheses(括号的意思... Write a function bool parenthesis(char str[]) that takes in a string containing parentheses(括号的意思), and determines if the parentheses are balanced. A string of parentheses is balanced if every parenthesis is closed in the reverse order that it is opened. Note that '(' is an open parenthesis and ')' is a closing parenthesis. For example, the string "(()()(()()))" is balanced, but the strings "(()))" and ")(" are not. Your function should ignore all characters except for the following: '(' and ')'. If the string is balanced, your function should return true; otherwise, it should return false 展开
 我来答
感冒九十九
2013-07-17 · TA获得超过113个赞
知道小有建树答主
回答量:260
采纳率:0%
帮助的人:99.6万
展开全部
#include <stdio.h>
#include <stdlib.h>

/* run this program using the console pauser or add your own getch, system("pause") or input loop */

unsigned int balance(const char* str)
{
int flags=0;
while( *str != '\0' ){
if( flags > 0 ) return 0; 
if( *str == ')' ) flags++;
else if( *str == '(' ) flags--;
else ;
str++;
}
if( flags != 0 ) return 0;
return 1; 


int main(int argc, char *argv[]) {
char *str1="(()()(()()))";
char *str2=")(";
int err1=balance(str1);
int err2=balance(str2);
printf("%d,%d\n",err1,err2);
system("pause");
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式