Modesty……
Modesty……
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Modesty……的博客
全部文章
(共19篇)
题解 | #全排列#
#include <iostream> #include<algorithm> using namespace std; void Perm(string &str,int index,int len){ if(index==len-1){ for(...
2023-03-30
0
243
题解 | #吃糖果#
#include <iostream> #include <vector> using namespace std; int main() { int n; while (cin >> n) { // 注意 while 处理多个 case ...
2023-03-30
0
234
题解 | #买房子#
#include <iostream> using namespace std; int main() { int salary,rate; while (cin >>salary>>rate) { // 注意 while 处理多个 case ...
2023-03-30
0
208
题解 | #首字母大写#
#include <iostream> using namespace std; int main() { string str; while (getline(cin,str)) { // 注意 while 处理多个 case int index = ...
2023-03-30
0
281
题解 | #今年的第几天?#
#include <iostream> #include <vector> using namespace std; vector<vector<int>> month {{31,28,31,30,31,30,31,31,30,31,30,31}, ...
2023-03-29
0
277
题解 | #玛雅人的密码#
#include <iostream> #include <queue> #include <unordered_map> #include<algorithm> using namespace std; int main() { int n...
2023-03-28
0
244
题解 | #二叉树遍历#
#include <stdio.h> typedef struct TreeNode { char val; struct TreeNode* left; struct TreeNode* right; } TreeNode; TreeNode* BuildT...
2023-03-28
0
262
题解 | #成绩排序#
#include<stdio.h> #include<stdlib.h> typedef struct Student{ int no; int score; }Student; int Compare(const void *a,const void *...
2023-03-28
0
232
题解 | #成绩排序#
#include <iostream> #include<algorithm> #include<vector> using namespace std; bool Compare(pair<int,int> a,pair<int,int>...
2023-03-28
0
204
题解 | #递推数列#
#include <iostream> #include<vector> using namespace std; int main() { int a0,a1,p,q,k; while (cin >>a0>>a1>>p&...
2023-03-27
0
187
首页
上一页
1
2
下一页
末页