- 博客(5)
- 收藏
- 关注
原创 c++全排列函数及BFS,DFS多种实现方法
全排列函数next_permutation#include<iostream>#include<string>#include<cstring>#include<cmath>#include<algorithm>#include<queue>#include<stack>using namespace std;int main(){ //全排列函数next_permutation() //1-4的全排
2020-09-19 11:17:55 687
原创 C++STL队列和栈讲解加运用实列
队列和栈#include<queue>//头文件 queue<int> q;//定义队列 q.front();//返回队头元素,但不删除q.pop();//删除队头元素 但不返回值q.empty();//判断队列是否为空,为空返回trueq.size();//返回队列中元素个数 q.push(x);//向队列加入新元素(入队),x为值q.back();//返回队尾元素的值,但不删除 #include<stack>//头文件 stack<int&g
2020-09-19 09:09:07 434
原创 使用C++STL判断回文
使用C++STL判断回文#include<iostream>#include<string>#include<cmath>#include<algorithm>#include<queue>#include<stack>using namespace std;stack<char> s;int main(){ string str; cin>>str; int mid; int fla
2020-09-18 16:33:49 513
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人