怕黑的牛油为你答疑解惑
怕黑的牛油为你答疑解惑
全部文章
分类
归档
标签
去牛客网
登录
/
注册
怕黑的牛油为你答疑解惑的博客
TA的专栏
168篇文章
1人订阅
语法篇:C++入门
0篇文章
0人学习
Python:python入门
0篇文章
0人学习
Python:数据分析
16篇文章
839人学习
语法篇:基础语法
143篇文章
0人学习
题解 | #[NOIP2015]金币#
题解 | #判断是否为回文字符串#
笔试 面试 经验贴
8篇文章
3348人学习
算法篇:面试笔刷TOP101
1篇文章
0人学习
题解 | #二分查找-I#
全部文章
(共404篇)
题解 | #查找#
#include<bits/stdc++.h> using namespace std; int main() { set<int>s; //write your code here...... int n, m, x, num; cin &...
2023-10-24
0
253
题解 | #统计字符串中各字母字符对应的个数#
#include <iostream> // write your code here...... #include <map> using namespace std; int main() { char str[100] = { 0 }; cin.g...
2023-10-24
0
194
题解 | #去除字符串中重复的字符#
#include <iostream> // write your code here...... #include <set> using namespace std; int main() { char str[100] = { 0 }; cin.g...
2023-10-24
0
220
题解 | #最后k个元素#
#include<bits/stdc++.h> #include <vector> using namespace std; int main() { int n, k; vector<int>a; // write your code h...
2023-10-24
0
227
题解 | #最后k个元素#
#include<bits/stdc++.h> #include <vector> using namespace std; int main() { int n, k; vector<int>a; // write your code h...
2023-10-24
0
176
题解 | #智能排队系统#
#include <iostream> #include <deque> using namespace std; class Guest { public: string name; bool vip; Guest(string name, ...
2023-10-24
0
224
题解 | #迭代器遍历set#
#include<bits/stdc++.h> #include <iostream> using namespace std; int main() { set<int>s; // write your code here...... i...
2023-10-24
0
213
题解 | #迭代器遍历容器#
#include <iostream> #include <iterator> #include <vector> // write your code here...... using namespace std; int main() { // ...
2023-10-24
0
174
题解 | #多态实现求面积体积#
#include<bits/stdc++.h> using namespace std; class rectangle { private: int length, width; public: rectangle(int x, int y) { ...
2023-10-24
0
299
题解 | #多态实现计算器功能#
#include <iostream> using namespace std; class BaseCalculator { public: int m_A; int m_B; // write your code here...... virtu...
2023-10-24
0
253
首页
上一页
30
31
32
33
34
35
36
37
38
39
下一页
末页