【資料結構】棧的應用--括號的匹配(c++)
標頭檔案:
#pragma once
#include <iostream>
#include <assert.h>
#include <string.h>
using namespace std;
template<class Type>
class SeqStack
{
public:
SeqStack(size_t sz = INIT_SZ);
~SeqStack();
public:
bool empty()const;
bool full()const;
void show()const;
bool push(const Type &x);
bool pop();
void gettop(Type &x);
int length()const;
void clear();
void destory();
void quit_system(Type &x);
private:
enum{ INIT_SZ = 20 };
Type *base;
int capacity;
int top;
};
template<class Type>
SeqStack<Type>::SeqStack(size_t sz = INIT_SZ)
{
capacity = sz > INIT_SZ ? sz : INIT_SZ;
base = new Type[capacity];
assert(base != NULL);
top = 0;
}
template<class Type>
SeqStack<Type>::~SeqStack()
{
destory();
}
// 判斷棧是否滿了
template<class Type>
bool SeqStack<Type>::full()const
{
return (top >= capacity);
}
// 判斷是否為空棧
template<class Type>
bool SeqStack<Type>::empty()const
{
return (top == 0);
}
// 顯示
template<class Type>
void SeqStack<Type>::show()const
{
if (top == 0)
{
cout << "the stack is empty!" << endl;
return;
}
for (int i = top - 1; i >= 0; --i)
{
cout << base[i] << endl;
}
}
// 入棧
template<class Type>
bool SeqStack<Type>::push(const Type &x)
{
if (full())
{
cout << "the stack is full,can not enter!" << endl;
return false;
}
else
{
base[top] = x;
top++;
return true;
}
}
// 出棧
template<class Type>
bool SeqStack<Type>::pop()
{
if (empty())
{
cout << "the stack is empty,can not pop!" << endl;
return false;
}
else
{
top--;
return true;
}
}
// 獲得棧頂元素
template<class Type>
void SeqStack<Type>::gettop(Type &x)
{
x = base[top - 1];
}
// 求棧長度
template<class Type>
int SeqStack<Type>::length()const
{
return top;
}
// 清空棧
template<class Type>
void SeqStack<Type>::clear()
{
top = 0;
}
// 摧毀棧
template<class Type>
void SeqStack<Type>::destory()
{
delete[]base;
base = NULL;
capacity = top = 0;
}
// 退出系統
template<class Type>
void SeqStack<Type>::quit_system(Type &x)
{
x = 0;
}
主函式:
#include "stack.h"
bool Check(const char *str)
{
SeqStack<char> mystack;
char value;
mystack.push('#');
while (*str != '\0')
{
if (*str == ')')
{
mystack.gettop(value);
if (value == '(')
{
mystack.pop();
}
else
{
return false;
}
}
else if (*str == ']')
{
mystack.gettop(value);
if (value == '[')
{
mystack.pop();
}
else
{
return false;
}
}
else
{
mystack.push(*str);
}
str++;
}
mystack.pop();
return mystack.empty();
}
int main()
{
char *str = "[(()[])]";
bool flag = Check(str);
if (flag)
{
cout << "OK" << endl;
}
else
{
cout << "Error" << endl;
}
return 0;
}
相關文章
- 資料結構括號匹配問題資料結構
- 【棧】括號匹配
- 括號匹配的檢驗問題(C++)C++
- 資料結構筆記-棧的應用資料結構筆記
- 棧和括號匹配,一文搞懂
- JavaScript 解構賦值小括號的應用JavaScript賦值
- 【LeetCode-棧】有效的括號LeetCode
- 前端資料結構(1)之棧及其應用前端資料結構
- 資料結構與演算法 | 棧的實現及應用資料結構演算法
- 波波的資料結構-棧資料結構
- c++物件建立帶括號與無括號的區別C++物件
- @資料結構C/C++版(5)《棧的順序儲存結構以及進棧和出棧操作的實現》資料結構C++
- 從零開始學資料結構和演算法(三)棧與棧的應用資料結構演算法
- JS 裡的資料結構 - 棧JS資料結構
- 資料結構-棧資料結構
- 資料結構 - 棧資料結構
- LeetCode-20. 有效的括號(棧模擬)LeetCode
- Leetcode 20 有效的括號valid-parentheses(棧)LeetCode
- 棧的應用之平衡符號 【資料結構與演算法分析 c 語言描述】符號資料結構演算法
- LeetCode 3: PairsOfParentheses (括號匹配問題)LeetCodeAI
- HDU 5831 Rikka with Parenthesis II (括號匹配)
- C++資料結構和pb資料結構的轉換C++資料結構
- 資料結構之「棧」資料結構
- 資料結構之棧資料結構
- 資料結構(1):棧資料結構
- 資料結構之——棧資料結構
- javascript資料結構 -- 棧JavaScript資料結構
- 資料結構實驗:連結串列的應用資料結構
- 堆疊的應用——用JavaScript描述資料結構JavaScript資料結構
- 資料結構:棧的基本概念、順序棧、共享棧以及鏈棧資料結構
- 資料結構與演算法-資料結構(棧)資料結構演算法
- 資料結構與演算法--簡單棧實現及其應用資料結構演算法
- Redis的資料結構及應用場景Redis資料結構
- Redis的資料結構與應用場景Redis資料結構
- 22. 括號生成-c++C++
- [C++]括號使用小技巧C++
- Java版-資料結構-棧Java資料結構
- js資料結構之棧JS資料結構
- python資料結構之棧Python資料結構