12 lines
120 B
C++
12 lines
120 B
C++
#pragma once
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
class 栈
|
|
{
|
|
public:
|
|
// 20. 有效的括号
|
|
bool isValid(string s);
|
|
};
|
|
|