数据结构:有效的括号(OJ20)

给定一个只包括 '('')''{''}''['']' 的字符串 s ,判断字符串是否有效。

有效字符串需满足:

  1. 左括号必须用相同类型的右括号闭合。
  2. 左括号必须以正确的顺序闭合。
  3. 每个右括号都有一个对应的相同类型的左括号。

示例 1:

输入:s = "()"

输出:true

示例 2:

输入:s = "()[]{}"

输出:true

示例 3:

输入:s = "(]"

输出:false

示例 4:

输入:s = "([])"

输出:true

提示:

  • 1 <= s.length <= 104
  • s 仅由括号 '()[]{}' 组成
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <stdbool.h>

typedef char STDataType;
typedef struct Stack
{
	STDataType* _a;
	int _top;		// 栈顶
	int _capacity;  // 容量 
}Stack;

// 初始化栈 
void StackInit(Stack* ps)
{
	assert(ps);
	ps->_a = NULL;
	ps->_capacity = ps->_top = 0;
}

// 入栈 
void StackPush(Stack* ps, STDataType data)
{
	assert(ps);
	if (ps->_capacity == ps->_top)
	{
		int newcapacity = ps->_capacity == 0 ? 4 : 2 * ps->_capacity;
		STDataType* tmp = (STDataType*)realloc(ps->_a, newcapacity * sizeof(STDataType));
		if (tmp == NULL)
		{
			perror("realloc fail!");
			exit(1);
		}
		ps->_a = tmp;
		ps->_capacity = newcapacity;
	}
	//空间足够
	ps->_a[ps->_top++]=data;
}

// 检测栈是否为空,如果为空返回非零结果,如果不为空返回0 
bool StackEmpty(Stack* ps)
{
	assert(ps);
	return ps->_top==0;
}

// 出栈 
void StackPop(Stack* ps)
{
	assert(ps);
	assert(!StackEmpty(ps));
	--ps->_top;
}

// 获取栈顶元素 
STDataType StackTop(Stack* ps)
{
	assert(ps);
	assert(!StackEmpty(ps));
	return  ps->_a[ps->_top - 1];
}

// 获取栈中有效元素个数 
int StackSize(Stack* ps)
{
	assert(ps);
	return ps->_top;
}


// 销毁栈 
void StackDestroy(Stack* ps)
{
	assert(ps);
	if (ps->_a)
	{
		free(ps->_a);
	}
	ps->_a = NULL;
	ps->_capacity = ps->_top = 0;
}

bool isValid(char* S)
{
	Stack st;
	StackInit(&st);
	//遍历字符串
	char* ps = S;
	while (*ps != '\0')
	{
		if (*ps == '(' || *ps == '[' || *ps == '{')
		{
			StackPush(&st,*ps);
		}
		else
		{
			//右括号和栈顶元素比较
			if (StackEmpty(&st))
			{
				return false;
			}
			//栈不为空才取栈顶元素比较
			char ch = StackTop(&st);
			if ((*ps == ')' && ch == '(')
				|| (*ps == ']' && ch == '[')
				|| (*ps == '}' && ch == '{'))
			{
				StackPop(&st);
			}
			else//不匹配
			{
				StackDestroy(&st);
				return false;
			}
		}
		ps++;
	}
	bool ret = StackEmpty(&st) == true;
	//StackDestroy(&st);

	return ret;
}

int main()
{
	Stack ST;
	//StackInit(&ST);
	//StackPush(&ST, 1);
	//StackPush(&ST, 2);
	//StackPush(&ST, 3);
	//isValid("(nihao}{}");
	char input[] = "[]{}()";
	bool result = isValid(input);
	printf("%s has valid parentheses\n",input);
	//while (!StackEmpty(&ST))
	//{
	//	STDataType data = StackTop(&ST);
	//	printf("%s ", *&data);
	//	//出栈
	//	StackPop(&ST);
	//}
	//StackDestroy(&ST);
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值