摘要: 1.打开vscode,按快捷键“Ctrl+Shift+P”出现一个搜索框。 2.输入“configure language”,然后回车,选择configure display language。 3.左边会出现插件包,选择中文版,然后install。 4.之后继续按快捷键“Ctrl+Shift+P” 阅读全文
posted @ 2021-01-05 09:06 一只蒟蒻也有大佬梦 阅读(2116) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<cstdio> 3 #include<queue> 4 #include<string.h> 5 using namespace std; 6 7 struct node 8 { 9 int x,y; 10 }; 11 12 queue 阅读全文
posted @ 2020-05-29 21:22 一只蒟蒻也有大佬梦 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 打印n个数的全排列 (1)使用stl里的next_permutation() #include<iostream> #include<algorithm> using namespace std; int main(){ int data[4]={5,2,1,4}; sort(data,data+4 阅读全文
posted @ 2020-05-09 19:59 一只蒟蒻也有大佬梦 阅读(406) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<algorithm> //注意头文件 3 using namespace std; 4 int main(){ 5 int a[1001]; 6 int n,m; 7 while(cin>>n>>m){ 8 for(int i=1;i< 阅读全文
posted @ 2020-05-08 18:24 一只蒟蒻也有大佬梦 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<map> 3 #include<string> 4 using namespace std; 5 int main(){ 6 int n,m,p; 7 map<string,int> shop; 8 string s; 9 while( 阅读全文
posted @ 2020-05-07 22:58 一只蒟蒻也有大佬梦 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<set> 3 #include<string> 4 using namespace std; 5 int main(){ 6 set<string>A,B; 7 string s1,s2; 8 int n; 9 while(cin>>n 阅读全文
posted @ 2020-05-06 08:47 一只蒟蒻也有大佬梦 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<list> 3 using namespace std; 4 int main(){ 5 int t,n; 6 cin>>t; 7 while(t--){ 8 cin>>n; 9 int k=2; 10 list<int>mylist; 阅读全文
posted @ 2020-05-04 23:36 一只蒟蒻也有大佬梦 阅读(154) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sunqing0316/article/details/46623823 阅读全文
posted @ 2020-05-02 18:46 一只蒟蒻也有大佬梦 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<string> 3 #include<queue> 4 using namespace std; 5 int k; 6 struct sortt{ 7 int pri; 8 int id; 9 friend bool operator< 阅读全文
posted @ 2020-05-01 23:19 一只蒟蒻也有大佬梦 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 #include<stack> 3 #include<queue> 4 #include<string> 5 using namespace std; 6 int main(){ 7 int t,n,temp; 8 cin>>t; 9 while(t-- 阅读全文
posted @ 2020-04-30 22:51 一只蒟蒻也有大佬梦 阅读(142) 评论(0) 推荐(0) 编辑