上林清风
上林清风
全部文章
分类
归档
标签
去牛客网
登录
/
注册
上林清风的博客
全部文章
(共9篇)
题解 | #IP地址#
#include <iostream> #include <string> using namespace std; int main() { string s; int tep, flag; string str; while ((cin ...
2023-08-27
0
324
题解 | #大整数排序#
#include<iostream> #include<string> #include<algorithm> using namespace std; //key:如果两个字符串长度不同,则长度大者为较大值,如果长度不同,则可按照字典序比较,出现第一个较大高位者...
2023-05-05
0
310
题解 | #后缀子串排序#
#include <iostream> #include<string> #include<vector> #include<algorithm> using namespace std; int main() { string str; ...
2023-05-04
0
240
题解 | #二叉排序树#
#include<iostream> #include<cstring> using namespace std; int arr[101]; typedef struct BiTNode { int data; struct BiTNode* L, * R;...
2023-05-04
0
260
题解 | #查找第K小数#
#include <iostream> #include<algorithm> using namespace std; int arr[1001]; int tep[1001]; int main() { int n; while(cin>>n ...
2023-04-30
0
265
题解 | #排序#
#include<iostream> #include<cstring> using namespace std; int arr[101]; int Partition(int A[],int low,int high){ A[0]=A[low]; whil...
2023-04-30
0
216
题解 | #搬水果#
//本题仅仅只是哈夫曼树的变形 #include<iostream> #include<algorithm> #include<vector> using namespace std; std::vector<int> v; int main()...
2023-04-14
0
306
题解 | #二叉排序树#
#include<iostream> using namespace std; int arr[101]; typedef struct BSTNode { int data; struct BSTNode* left; struct BSTNode* right...
2023-04-14
0
331
题解 | #学分绩点#
#include <iostream> using namespace std; const int num=11; int credits[num]; int scores[num]; int main(...
2022-10-27
0
361