燃烧的橘子
燃烧的橘子
全部文章
分类
归档
标签
去牛客网
登录
/
注册
燃烧的橘子的博客
全部文章
(共25篇)
题解 | #查找#
#include <iostream> using namespace std; int main() { string s; cin>>s; int n; cin>>n; string temp; for(int...
2023-03-05
0
238
题解 | #树查找#
#include <iostream> #include<vector> #include<cmath> using namespace std; int main() { vector<int>v; int n; int v...
2023-03-05
0
293
题解 | #查找第K小数#
#include <iostream> #include<algorithm> #include<vector> using namespace std; int main() { int val; int n; vector<in...
2023-03-03
0
217
题解 | #二进制数#除基取余法
#include <iostream> #include<vector> using namespace std; int main() { int num; vector<int>v; while(cin>>num) ...
2023-03-02
0
225
题解 | #二叉排序树#基本做法
#include <iostream> using namespace std; struct BTree { int val; struct BTree*lchild,*rchild; BTree(int x):val(x),lchild(nullptr),r...
2023-03-02
0
220
题解 | #二叉树遍历#
#include <iostream> using namespace std; struct BTree { char val; struct BTree*lchild,*rchild; BTree(char c):val(c),lchild(nullptr)...
2023-03-01
0
275
题解 | #二叉排序树#函数要加&引用,不然很容易错
#include <iostream> using namespace std; struct BTree { int val; struct BTree* lchild,*rchild; BTree(int x):val(x),lchild(nullptr),...
2023-03-01
3
309
题解 | #农夫、羊、菜和狼的故事#
#include <iostream> using namespace std; int main() { cout<<"sheep_go"<<endl; cout<<"nothing_come"<<endl; c...
2023-02-26
0
284
题解 | #最长&最短文本#注意要使用getline
#include <iostream> #include <string> #include<vector> using namespace std; int main() { vector<string>v; string str;...
2023-02-26
5
333
题解 | #八进制#除基取余法
#include <iostream> #include<vector> using namespace std; int main() { int n; vector<int>v; while(cin>>n) { ...
2023-02-26
1
268
首页
上一页
1
2
3
下一页
末页