lovekang
lovekang
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
lovekang的博客
全部文章
(共30篇)
题解 | #阶乘#
用python有点耍赖,不过思路差不多 from math import factorial while True: try: n = int(input()) m = p = n if n % 2 == 0: m -= 1 i...
2024-08-03
0
109
题解 | #找位置#
简答的哈希 #include <iostream> #include <map> #include <vector> #include <set> using namespace std; int main() { string s; ...
2024-08-03
0
80
题解 | #二叉排序树#
如果要做出这个题目,我们首先需要知道如何实现一个二叉排序树。主要核心部分就是insert函数 struct TreeNode{ int val; struct TreeNode *left, *right; TreeNode(int val): val(val), left(...
2024-08-02
0
119
题解 | #打印日期#
简单模拟题,放松心态啦! #include <iostream> #include <algorithm> using namespace std; int main() { int year, d; while (cin >> year >...
2024-08-02
0
97
题解 | #对称矩阵#
简单题,简单来 #include <iostream> using namespace std; int arr[105][105]; void solve(int n) { for (int i = 0; i < n; i++) { for (int j ...
2024-08-02
0
112
题解 | #最小年龄的3个职工#
有一说一,这个c语言的qsort真的很难用,这里cmp的写法需要大家注意下,否则很难过关 #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <string.h> ...
2024-08-02
1
122
题解 | #矩阵最大值#
加油吧,诸位! #include <stdio.h> int main() { int m, n; int arr[101][101]; while(scanf("%d %d", &m, &n) != EOF) { ...
2024-08-02
1
110
题解 | #守形数#
题目中说了是低位数,我们直接倒着取出每一位数字做比较即可,发现不相等,直接break,完成!!! #include <stdio.h> #include <stdbool.h> int main() { int n; while (scanf("%d...
2024-08-02
0
96
题解 | #遍历链表#
链表其实非常简单,主要是结构体的定义比较烦人,个人其实还是更加偏向用类的方式来实现,但是c没有,┭┮﹏┭┮ #include <stdio.h> typedef struct node{ int val; struct node* next; } node; int ...
2024-08-02
0
97
题解 | #成绩排序#
简单题,就简单做,别给自己下套了! #include <bits/stdc++.h> using namespace std; struct student { string name; int age; double score; student() ...
2024-08-02
1
103
首页
上一页
1
2
3
下一页
末页