Category "备考资料"
0 post(s) filed in this category.
0 post(s) filed in this category.
10122009 / No Comment / 备考资料
先序遍历非递归算法 #define maxsize 100 typedef struct { Bitree Elem[maxsize]; int top; }SqStack; void PreOrderUnrec(Bitree t) { SqStack s; StackInit(s); p=t; while (p!=null || !StackEmpty(s)) { while (p!=null) { // 遍历左子树 visite(p->data); push(s,p); p=p->lchild; } // endwhile if (!StackEmpty(s)) { // 通过下一次循环中的内嵌while实现右子树遍历 p=pop(s); p=p->rchild; } // endif } // endwhile } // PreOrderUnrec 中序遍历非递归算法 #define maxsize [...]
07132009 / 2 Comments / 备考资料
部分解压密码 08.rar :jieya2005 18.rar :h-jieya2005 38.rar :u-jieya2005 88.rar :a-jieya2005 98.rar :n-jieya2005 108.rar:g-jieya2005 下载:吉林大学高等数学BT下载
06142009 / No Comment / 备考资料
1递归法转换整数为字符 void convert(int n) { int t; if((t=n/10)!=0) convert(t); putch(n%10+’0′); } 2判断素数 int isPrime(int n) { int i; for(i=2;ic) { t=b; b=c; c=t; } * 若要求由大到小顺序输出,改’>'为’
10062007 / No Comment / 备考资料
第一周的第01天(一定要坚持下来): With my own ears I clearly heard the heart beat of the nuclear bomb 我亲耳清楚地听到原子弹的心脏的跳动。 Next year the bearded bear will bear a dear baby in the rear 明年,长胡子的熊将在后方产一头可爱的小崽. Early I searched through the earth for earthenware so as to research in earthquake 早先我在泥土中搜寻陶器以研究地震. I learn that learned earnest men earn much by learning [...]
01242006 / No Comment / 备考资料
如果你覺得還有必要登上源出處的話就請回復我, 告訴我那個文件是哪個地方的. 謝謝了… ^_^ SAT I
12042005 / No Comment / 备考资料
[separator]