IFandFOR 的 站内主页
2008
12-29
12-29
老是说我没有定义labelR,labelB,labelG,怎么回事呀?
高手帮帮忙,谢谢
//---------------------------------------------------------------------------
#include <vcl.h>#pragma hdrstop
#include "Unit1.h"//---------------....
Read More >
2008
10-03
10-03
/*s[m]表示栈,top表示栈顶指针*/
void inorder(BiTree root) /*中序遍历二叉树,root卫二叉树的根结点*/
{
top=0;p=root;
do{
while(p!=NULL)....
Read More >