非递归对二叉树的遍历操作-栈实现
1Coder.Bing 发布于 2015-01-18 14:52:51
#include <stdio.h> #include <stdlib.h> typedef char elemtype; /*结构体声明*/ typedef struct b…
Coder.Bing 发布于 2015-01-18 14:52:51
#include <stdio.h> #include <stdlib.h> typedef char elemtype; /*结构体声明*/ typedef struct b…
Coder.Bing 发布于 2015-01-17 02:33:19
[t]亲密数:满足整数A的因子(包括1,不包括自身)之和a1等于B,且B的因子(包括1,不包括自身)之和b1等于A,且A不等于B[/t] #include <stdi…
Coder.Bing 发布于 2015-01-16 12:12:19
//公式 w = (int)(c/4) - 2*c + y + (int)(y/4)+ (int)(13*(m+1)/5) + d - 1; //可以获取当前日期,并计算今天是星期几. #includ…