总之就是非常可爱
总之就是非常可爱
全部文章
题解
归档
标签
去牛客网
登录
/
注册
总之就是非常可爱的博客
全部文章
/ 题解
(共171篇)
题解 | #删除无序链表中值重复出现的节点#
# include <bits/stdc++.h> using namespace std; struct list_node{ int val; struct list_node * next; }; list_node * ...
C++
2022-02-21
1
382
题解 | #找到字符串的最长无重复字符子串#
//时间复杂度不是O(N) #include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int ma...
C++
2022-02-21
2
559
题解 | #数组中值出现了一次的数字#
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int *arr=new int[n]; &nb...
C++
2022-02-20
1
401
题解 | #单链表的选择排序#
# include <bits/stdc++.h> using namespace std; struct list_node{ int val; struct list_node * next; }; list_node *...
C++
2022-02-20
1
435
题解 | #矩阵的最小路径和#
#include<bits/stdc++.h> using namespace std; int min(int a,int b){ return a<b?a:b; } int main(){ int n,m; ...
C++
2022-02-20
1
456
题解 | #按照左右半区的方式重新组合单链表#
# include <bits/stdc++.h> using namespace std; struct list_node{ int val; struct list_node * next; }; list_node *...
C++
2022-02-20
1
398
题解 | #合并两个有序的单链表#
# include <bits/stdc++.h> using namespace std; struct list_node{ int val; struct list_node * next; }; list_node *...
C++
2022-02-20
1
463
题解 | #在数组中找到出现次数大于n/k的数#
#include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin>>n>>k; int *arr=new ...
C++
2022-02-20
1
432
题解 | #需要排序的最短子数组长度#
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int *arr=new int[n]; &nb...
C++
2022-02-20
1
372
题解 | #找到无序数组中最小的k个数#
//本题用一个大小为k的大根堆即可解决 //遍历arr数组的每一个数,如果此时大根堆还没满就直接放入堆中,否则和大根堆的堆顶比较 //如果比堆顶要小则替换堆顶再重新调整成大根堆 //最后大根堆中的k个数就是数组中最小的k个数 #include<bits/stdc++.h> using n...
C++
2022-02-20
1
463
首页
上一页
5
6
7
8
9
10
11
12
13
14
下一页
末页