小陆要懂云
小陆要懂云
全部文章
题解
归档
标签
去牛客网
登录
/
注册
小陆要懂云的博客
全部文章
/ 题解
(共37篇)
C++,用好STL
#include <map> #include <iostream> #include <string> #include <vector> #include <algorithm> #include <iterator> us...
C++
STL
Lambda
2021-08-20
43
2031
C++,动态规划,力扣官方解法
D[i][j] 表示 A 的前 i 个字母和 B 的前 j 个字母之间的编辑距离。 本质不同的操作实际上只有三种: 在单词 A 中插入一个字符; 在单词 B 中插入一个字符; 修改单词 A 的一个字符。 特别地,如果 A 的第 i 个字符和 B 的第 j 个字符原本就相同,那么我们实际上不需要进行...
C++
动态规划
2021-08-20
21
1813
C++,最短代码,进来学知识
#include <iostream> #include <algorithm> #include <vector> #include <iterator> using namespace std; int main(){ int n,k; ...
C++
STL
2021-08-19
15
1063
C++,无序集合unordered_set
#include <iostream> #include <string> #include <unordered_set> using namespace std; int main(){ string shortS,longS; bool re...
C++
哈希表
STL
2021-08-19
22
1235
C++,哈希表,易懂,代码短
RandomListNode* Clone(RandomListNode* pHead) { if(!pHead) return nullptr; RandomListNode* cur = pHead; unordered_map<Random...
C++
哈希表
2021-08-18
25
1230
C++,剑指Offer原书代码详解
先在树A中找到值为树B根节点的值的节点,然后判断这个节点的子树是否含有和树B一样的结构。 第一步中,查找与根节点值一样的节点,采用递归的方法来遍历树。 第二步中,同样采用递归的方法,判断判断当前对应节点是否相同,然后递归判断左、右节点,递归终止条件是到达了叶节点。 class Solution ...
C++
递归
树
2021-08-18
10
1117
C++,三行就能解决
使用STL和Lambda vector<int> reOrderArray(vector<int>& array) { // write code here stable_partition(array.begin(), arr...
C++
STL
Lambda
2021-08-17
6
580
C++,先调用STL算法sort,然后计算最长连续
int MLS(vector<int>& arr) { // write code here if(arr.empty()) return 0; int longest=1; int coun...
C++
STL
2021-08-15
3
535
C++,代码美观,STL的稳定排序和用Lambda写小函数
#include <iostream> #include <string> #include <vector> #include <algorithm> using namespace std; int main() { int n,flag;...
C++
STL
Lambda
2021-08-15
37
2432
C++,STL的正确使用方法
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin >> n){ vector<int> v; int m; ...
C++
STL
2021-08-15
22
1022
首页
上一页
1
2
3
4
下一页
末页