提高刷题幸福感的小技巧 :: labuladong的算法小抄 #978
Replies: 21 comments 1 reply
-
打卡. 这个技巧NB, 让我想起了回溯算法. |
Beta Was this translation helpful? Give feedback.
-
太强了,想当初我初学算法还是手写推算递归 |
Beta Was this translation helpful? Give feedback.
-
十分有用,谢谢大佬! |
Beta Was this translation helpful? Give feedback.
-
2022.4.11 mark |
Beta Was this translation helpful? Give feedback.
-
这个好牛,学到了 |
Beta Was this translation helpful? Give feedback.
-
这篇文章何时写的呢? |
Beta Was this translation helpful? Give feedback.
-
Python怎么实现实现 |
Beta Was this translation helpful? Give feedback.
-
👍 打卡,感谢! |
Beta Was this translation helpful? Give feedback.
-
这个真的学到了 // 输入 n,打印 n 个 tab 缩进
void printIndent(int n) {
for (int i = 0; i < n; i++) {
printf(" ");
}
} |
Beta Was this translation helpful? Give feedback.
-
check in |
Beta Was this translation helpful? Give feedback.
-
好棒我技巧!!! // 全局变量,记录递归函数的递归层数
int count = 0;
// 输入 n,打印 n 个 tab 缩进
void printIndent(int n) {
for (int i = 0; i < n; i++) {
printf(" ");
}
} |
Beta Was this translation helpful? Give feedback.
-
东哥好,有个错别字。 |
Beta Was this translation helpful? Give feedback.
-
20230104 打卡 |
Beta Was this translation helpful? Give feedback.
-
感觉“巧用随机数”章节的做法并不是最优的。 |
Beta Was this translation helpful? Give feedback.
-
文章链接点这里:提高刷题幸福感的小技巧
评论礼仪 见这里,违者直接拉黑。
Beta Was this translation helpful? Give feedback.
All reactions