WsjjsZ
WsjjsZ
全部文章
分类
归档
标签
去牛客网
登录
/
注册
WsjjsZ的博客
TA的专栏
52篇文章
0人订阅
多多练习C++
52篇文章
357人学习
全部文章
(共87篇)
题解 | #反转链表#
/* struct ListNode { int val; struct ListNode *next; ListNode(int x) : val(x), next(NULL) { } };*/ class Solution { public: ListNode* Rever...
2023-04-04
0
225
题解 | #立方根#
#include <cmath> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @retu...
2023-04-03
0
280
题解 | #2的幂#
#include <bitset> #include <cmath> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @par...
2023-04-03
0
264
题解 | #判断是否为回文字符串#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param str string字符串 待判断的字符串 * @return bool布尔型 *...
2023-04-02
0
266
题解 | #大数加法#
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算两个数之和 * @param s string字符串 表示第一个整数 * @param t string字符...
2023-03-27
0
304
题解 | #skew数#
#include <iostream> #include <cmath> using namespace std; int main() { string str; while(cin>>str){ int sken=0; ...
2023-03-24
0
244
题解 | #数字反转#
#include <iostream> using namespace std; int main() { int a,b; while( cin>>a>>b){ int s=a+b; if(s>99 || a <10 ...
2023-03-24
0
284
题解 | #与7无关的数#
#include <cstdlib> #include <iostream> #include <bits/stdc++.h> #include <string> using namespace std; int main() { long ...
2023-03-24
0
200
题解 | #单词替换#
#include <iostream> #include <sstream> #include <vector> #include <algorithm> using namespace std; int main() { string wo...
2023-03-24
0
262
题解 | #数制转换#
#include <cctype> #include <iostream> #include <algorithm> using namespace std; string Atoi(string s,int radix,int n) { tran...
2023-03-24
0
268
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页