2 Star 0 Fork 0

狐皮先生/nb.c

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
3.17.cpp 2.28 KB
一键复制 编辑 原始数据 按行查看 历史
狐皮先生 提交于 2023-03-18 22:34 . 3.18
//
//extern "C"
//{
//#include"../../Stack/StackQueue.h"
//#include<iostream>
//using namespace std;
//
//#define ADD1(X,Y) ((X)+(Y))
//#define ADD2(X,Y) (X+Y)
//
//
//int add1(int a=4,int b=6)
//{
// return a + b;
//}
//
//inline int add2(int a = 4, int b = 6)
//{
//
// a=a + b ;
// return a;
//}
//
//int main()
//{
// int ret = add2(5, 6);
// //cout << &add2 << endl;
//
// int a = 1;
// int b = 1;
//
// //cout << ADD1(a | b, a & b) << endl;
// //cout << ADD2(a | b, a & b) << endl;
// //a 00000000 00000000 00000000 00000001
// //b 00000000 00000000 00000000 00000001
// //a|b 00000000 00000000 00000000 00000001
// //a&b 00000000 00000000 00000000 00000001
// //
// //
// //a 00000000 00000000 00000000 00000001
// //b 00000000 00000000 00000000 00000001
// //b+a 00000000 00000000 00000000 00000010
// //a|a+b 00000000 00000000 00000000 00000011
// //&b 00000000 00000000 00000000 00000001
// //int N = 1000000000;
//
//
// //const int begin1 = clock();
// //for (int i = 0; i < N; i++)
// //{
// // int bbc=add1(1, 2);
// //}
// //const int end1 = clock();
//
//
//
// //const int begin2 = clock();
// //for (int i = 0; i < N; i++)
// //{
// // //add2(1, 2);
// // int bcc=add2(5, 6);
// //}
// //const int end2 = clock();
//
//
//
// //cout << "add1 time:" << end1 - begin1 << endl;
// //cout << "add2 time:" << end2 - begin2 << endl;
//
// return 0;
//}
//
extern "C"
{
#include"../../Stack/StackQueue.h"
}
bool isValid(const char* s) {
ST st;
StackInit(&st);
while (*s)
{
if (*s == '[' || *s == '{' || *s == '(')
{
StackPush(&st, *s);
}
else
{
if (StackEmpty(&st))
{
StackDestroy(&st);
return false;
}
else
{
STDataType top = StackTop(&st);
StackPop(&st);
if ((*s == ')' && top != '(') || (*s == ']' && top != '[') || *s == '}' && top != '{')
{
StackDestroy(&st);
return false;
}
}
}
s++;
}
bool ret = StackEmpty(&st);
StackDestroy(&st);
return ret;
}
int main()
{
printf("%d \n", isValid("{}{)"));
printf("%d \n", isValid("({}{})"));
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mr-fox-skin/nb.c.git
git@gitee.com:mr-fox-skin/nb.c.git
mr-fox-skin
nb.c
nb.c
master

搜索帮助