whoway
whoway
全部文章
题解
01.笔试准备(4)
02.面试准备(1)
03.C++复习(5)
04.数据结构和算法(4)
05.随笔(2)
前端(1)
未归档(13)
读书笔记(5)
归档
标签
去牛客网
登录
/
注册
whoway的博客
人汲取知识的速度是超乎想象的
全部文章
/ 题解
(共124篇)
模拟-水题
int calc( int n, int hang , int lie , vector< vector<int> > & a, vector< vector<int> > & b ) { int sum=0; for...
2021-06-22
0
498
贪心算法
#include<bits/stdc++.h> using namespace std; int n; int arr[4]={1,4,16,64}; int need[4]; int solve() { int res=0; int val=1024-n; ...
2021-06-15
0
480
题解 | #数组中只出现一次的数(其它数出现k次)#
01.方法1『位运算』 神乎其技『见其他牛油的提高 02.方法2『哈希』 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param arr i...
位运算
2021-06-13
0
495
题解 | #链表中环的入口节点#
快指针的判断,『技巧』 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), ne...
双指针
2021-06-13
0
458
题解 | #去掉空行#
最简方法 #! /bin/bash cat nowcoder.txt | awk NF 法2 #! /bin/bash awk '{if($0!="") {print $0 }}' nowcoder.txt
shell
2021-06-04
4
830
题解 | #求平均值#
01.AC的Shell #!/bin/bash read loop sum=0 count=0 for ((i = 0; i < $loop; ++i)) do read temp ((sum+=temp)) ((++count)) done echo "...
shell
2021-06-04
0
755
注意样例+大数乘法+逆向思维
注意样例 1、当某个为0的时候,需要特判!! 2、注意,要先找到最高位! 3、逆向思维 class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * @param s str...
大数加法
2021-05-10
1
775
substr+双指针+测试样例好像有误
1、转换大小写 2、用『双指针』进行获取结果 吐槽:但是,这个题目的测试样例,似乎默认是一个空格,没有考虑多个空格的情况 class Solution { public: string trans(string s, int n) { // write code here ...
string
2021-05-10
1
601
坑点
一、注意事项 if( 0==sum ) { printf("-1\n"); } 二、AC代码 #include<bits/stdc++.h> using namespace std; ...
2021-03-27
0
479
水题
#include<bits/stdc++.h> using namespace std; int n; int main() { while( ~scanf("%d",&n) ) { while( n-- ) { ...
2021-03-27
0
501
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页