牛客861440576号
牛客861440576号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客861440576号的博客
全部文章
(共39篇)
题解 | #特殊乘法#
#include "cstdio" using namespace std; int handle(int num, int* arr) { int i = 0; while (0 != num) { int a = num % 10; arr[i...
2023-02-22
0
266
题解 | #查找#
#include "cstdio" #include "map" using namespace std; int main() { int n, m; scanf("%d", &n); int arr[n + 1]; map<int, int> f...
2023-02-22
0
228
题解 | #查找#
#include "cstdio" #include "algorithm" using namespace std; // 对升序数组二分查找 bool binary_search(int n, int x, int arr[]) { int left = 0, right = n -...
2023-02-22
0
263
题解 | #找x#
#include "cstdio" #include "algorithm" using namespace std; int main() { int n, x; scanf("%d", &n); int arr[n + 1]; for (int i = 0; ...
2023-02-21
0
312
题解 | #成绩排序#sort+cmp+结构体+数组+二次排
#include "cstdio" #include "algorithm" using namespace std; struct Student { char name[100]; unsigned int score; unsigned int seq; }; b...
2023-02-21
0
211
题解 | #成绩排序#
#include "cstdio" #include "algorithm" using namespace std; // 结构体二次排序 struct Student { unsigned int id; unsigned int score; }; // 结构体二次排序 ...
2023-02-21
0
263
题解 | #整数奇偶排序#
#include "cstdio" #include "algorithm" using namespace std; // comp 函数一次性按要求排序一个数组 bool comp3(int left, int right) { if (left % 2 == 1 && right...
2023-02-21
0
242
题解 | #整数奇偶排序#
#include "cstdio" #include "algorithm" using namespace std; bool comp(int left, int right) { return left > right; } int main() { int n =...
2023-02-21
0
269
题解 | #排序#
#include "cstdio" #include "algorithm" using namespace std; /** * todo * 1. sort 库函数 从start 到 last 排序 左闭右开 * 2. * @return(756076230) */ bool...
2023-02-21
0
301
题解 | #与7无关的数#
#include "cstdio" /** 描述 一个正整数,如果它能被7整除,或者它的十进制表示法中某个位数上的数字为7, 则称其为与7相关的数.现求所有小于等于n(n<100)的与7无关的正整数的平方和。 输入描述: 案例可能有多组。对于每个测试案例输入为一行,正整数n,(n<10...
2023-02-13
0
365
首页
上一页
1
2
3
4
下一页
末页