sidsung
sidsung
全部文章
分类
归档
标签
去牛客网
登录
/
注册
sidsung的博客
全部文章
(共49篇)
题解 | #点击消除#
#include <iostream> #include <string> #include <stack> using namespace std; int main() { string s; cin >> s; sta...
2023-04-23
0
179
题解 | #逆波兰表达式求值#
#include <string> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param tokens string字符串vect...
2023-04-21
0
219
题解 | #有效括号序列#
class Solution { public: /** * * @param s string字符串 * @return bool布尔型 */ bool isValid(string s) { // write code ...
2023-04-20
0
192
题解 | #栈的压入、弹出序列#
class Solution { public: bool IsPopOrder(vector<int> pushV, vector<int> popV) { stack<int> st; int i = 0; ...
2023-04-20
0
160
题解 | #【模板】栈#
#include <cctype> #include <iostream> #include <cstring> using namespace std; class Stack { private: enum {Max = 100000}; ...
2023-02-17
0
263
题解 | #十进制整数转十六进制字符串#
#include <iostream> #include <string> using namespace std; string toHexString(int n); int main() { int n; cin >> n; ...
2023-02-16
0
292
题解 | #实现简单计算器功能#
#include <iostream> #include "string.h" using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); /...
2023-02-15
0
326
题解 | #个人所得税计算程序#
#include <iostream> // write your code here...... #include <vector> #include <algorithm> #include <iomanip> using namespace st...
2023-02-14
0
304
题解 | #统计字符串中各类型字符的个数#
#include <iostream> #include <cstring> using namespace std; int main() { int letter = 0; int digit = 0; int space = 0; i...
2023-02-09
0
358
题解 | #找到数组里的第k大数(C++)#
#include<bits/stdc++.h> using namespace std; int main(){ int n,k; vector<int>a; // write your code here...... cin >> n; cin >...
2023-02-09
0
329
首页
上一页
1
2
3
4
5
下一页
末页