摘要:
L2-006. 树的遍历 L2-011. 玩转二叉树 阅读全文
摘要:
读入的是字符串,数组大小至少为字符串长度+1 阅读全文
摘要:
测试数据: 1 2 3 1 3 2 2 1 3 2 3 1 3 1 2 3 2 1 Code: 先确定最小,然后确定第二小 一个比较坑的错误程序: 错误结果: 2 3 12->1->3 3 2 12->1->3 阅读全文
摘要:
易错题 阅读全文
摘要:
Two ways: 1.接近O(n) 2.O(kn) 会超时 #include <stdio.h>#include <stdlib.h>#include <math.h>int main(){long n,i,j,k,num=0,b;scanf("%ld",&n);for (i=2;i<=(long 阅读全文