loveC--
loveC--
全部文章
分类
归档
标签
去牛客网
登录
/
注册
loveC--的博客
全部文章
(共58篇)
题解 | #特殊乘法#
利用str[i]-"0"来实现字符之间的乘法 #include <iostream> using namespace std; int main() { string num1; string num2; while (cin >> num1 &g...
2024-02-25
0
146
题解 | #查找#
408必学二分查找 #include<iostream> #include<algorithm> using namespace std; int arr1[100]; int arr2[100]; bool binarysearch(int n, int target)...
2024-02-25
0
166
题解 | #奥运排序问题#
用结构体加sort花了4个小时,机试考这种题我直接暴毙而亡 #include<iostream> #include<algorithm> using namespace std; typedef struct Country { int gold; int pedal;...
2024-02-24
0
251
题解 | #整数奇偶排序#
利用定义compare函数来实现复杂的排序算法 #include<iostream> #include<algorithm> using namespace std; bool comp(int lhs, int rhs) { //不发生交换的条件 要求返回真 if (...
2024-02-24
0
202
题解 | #排序#
快速排序 #include<iostream> #include<algorithm> using namespace std; int partition(int arr[],int l,int r) { int m = arr[l]; while (l < ...
2024-02-24
0
171
题解 | #手机键盘#
利用两个map映射来找关系 #include<iostream> #include<map> using namespace std; map<char, int> inputTime = { {'a',1},{'b',2} ,{'c',3}, {'d'...
2024-02-23
0
182
题解 | #Day of Week#
#include<iostream> #include<map> using namespace std; //一般都加上这句话 int mday[2][13] = { { 0,31,28,31,30,31,30,31,31,30,31,30,31 }, { 0...
2024-02-23
0
222
题解 | #日期差值#
#include <iostream> using namespace std; int arr[2][13]={ {0,31,28,31,30,31,30,31,31,30,31,30,31}, {0,31,29,31,30,31,30,31,31,30,31,30...
2024-02-23
0
180
首页
上一页
1
2
3
4
5
6
下一页
末页