怕黑的小白一定要上岸
怕黑的小白一定要上岸
全部文章
分类
题解(26)
归档
标签
去牛客网
登录
/
注册
怕黑的小白一定要上岸的博客
全部文章
(共26篇)
题解 | #从上往下打印二叉树#
通过测试用例4/10; 骚操作。 /* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL)...
C++
2021-11-28
0
376
题解 | #下厨房#
#include <iostream> #include <set> using namespace std; int main() { set<string> st; string tem; while (cin>>tem...
C++
2021-10-05
0
367
题解 | #字符集合#22行解决
#include <iostream> using namespace std; int main () { string s; while(cin>>s) { int arr[200]={0}; for (int i...
C++
2021-10-05
2
499
题解 | #输入n个整数,输出其中最小的k个#
9/11组用例通过。不知道为什么有没高手指点一下; #include <iostream> #include <set> using namespace std; int main () { long n,m; long arr1[n],arr2[m]; ...
C++
2021-09-21
0
484
题解 | #自守数#
#include <iostream> using namespace std; bool is_zss(int n)//判断是否为自受术 { int nr=n*n,a=0,n_copy=n;//拷贝一份 //首先判断n是几位数,用a表示 do {n_...
2021-09-11
0
400
题解 | #扑克牌大小#
写一个错误的题解吧;大家能看出来哪里错了吗, #include <iostream> #include <algorithm> using namespace std; int main() { string tb = "345678910JQKA2jok...
2021-09-11
0
401
题解 | #查找组成一个偶数最接近的两个素数#待修改
//测试20。。输出的是对的,测试其他的就错了,不知道为什么。 #include <iostream> #include <set> #include <vector> using namespace std; bool isss(int n)//判断是否为素数...
2021-09-09
0
389
题解 | #挑7#
#include <iostream> #include <string> #include <set> using namespace std; int main () { int n; set<int> s; while...
2021-09-09
2
383
题解 | #多线程#x没学过线程
#include <iostream> using namespace std; int main () { int n; while (cin>>n) { for (int i=0;i<n;i++) c...
2021-09-09
0
363
题解 | #截取字符串#
#include <iostream> #include <string> using namespace std; int main () { string s; int n; while (cin>>s)//为什么这行可以。下面这行就...
2021-09-09
0
316
首页
上一页
1
2
3
下一页
末页