whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共124篇)
题目意思/题目样例不严谨
非本题意描述做法『但能AC,说明题目样例有问题/题目本身描述不清晰』 (1)高中数列求和 class Solution { public: /** * return the min number * @param arr int整型vector the array ...
2021-03-10
0
565
next_permutation的源代码解析
一、迭代写法 算法来自STL源代码 bool myNext( string::iterator First, string::iterator Last ) { if( First==Last ) { return false; } string...
next_permutation
2021-03-10
0
698
一中依靠int和long long 自身特性判断溢出的写法
class Solution { public: /** * * @param x int整型 * @return int整型 */ int reverse(int x) { // write code here ...
2021-03-01
0
582
典型栈结构的题目
和一般的栈的题目不同的是:这个 /** * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ //判断,左边和右边是不是对称的 bool s...
2021-03-01
0
493
小细节
int yes=1;后面,再yes^=1;就能很好的解决代码细节设计 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param array int...
2021-02-28
0
471
十进制数M转化为N进制数『代码模板』
一、代码模板 十进制数M(M>0)转化为N进制数 while(M) { char c=mp[M%N]; ret+=c; M/=N; } reverse( ret.begin(), re...
2021-01-18
0
586
大数加法模拟『模板』-编程技巧-反转再反转
大数加法模拟『模板』-编程技巧-反转再反转 AC代码 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * 计算两个数之和 * @param s string字符串 表示第一...
记忆
2021-01-11
0
615
sprintf的使用
#include<bits/stdc++.h> using namespace std; int tag[101]={0}; bool test(int n) { if( 0==(n%7) ) { return true; } cha...
记忆
2020-12-28
2
606
可读性极差,就不要没事干当孔乙己炫技。
一、某ASCII码方式输出 炫技??可读性极差printf("%d%c",arr[len],len? 32 :10 );其实等价于,我注释掉的 #include<bits/stdc++.h> using namespace std; int n; static const int ma...
记忆
2020-12-27
0
579
有点忘记strcmp函数了
return ( strcmp(a.name, b.name)<0 )? true : false;记忆 #include<bits/stdc++.h> using namespace std; int n; struct node { int num; cha...
记忆
2020-12-27
0
598
首页
上一页
3
4
5
6
7
8
9
10
11
12
下一页
末页