wuhangji
wuhangji
全部文章
分类
归档
标签
去牛客网
登录
/
注册
wuhangji的博客
全部文章
(共8篇)
题解 | #完数VS盈数#
// 一个数如果恰好等于它的各因子(该数本身除外)子和, // 如:6=3+2+1。则称其为“完数”;若因子之和大于该数,则称其为“盈数”。 // 求出2到60之间所有“完数”和“盈数”。 // 并以如下形式输出: E: e1 e2 e3 ......(ei为完数) G: g1 g2 g3 .......
2023-11-27
0
264
题解 | #abc#
#include <stdio.h> int main() { // 通过简单的运算减少循环次数 for (int a = 1; a < 5; a++) { for (int b = 1; b < 5; b++) { ...
2023-11-27
0
165
题解 | #最小邮票数#
#include <stdio.h> int minStamps; // target:还需要的目标数 void dfs(int target, int currentStamps, int index, int n, int* stamps) { if (target ==...
2023-11-27
0
211
题解 | #二叉树遍历#
#include <stdio.h> #include <stdlib.h> typedef struct Node { char data; struct Node* leftNode; struct Node* rightNode; } Node...
2023-11-25
0
218
题解 | #整数拆分#
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new S...
2023-11-24
0
261
题解 | #质因数的个数#
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { static int total = 0; public static void main(String[] args) {...
2023-11-22
0
166
题解 | #手机键盘#
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { // 按键次数 in...
2023-11-22
0
179
题解 | #反序输出#
import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner in = new S...
2023-11-21
0
231