Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

怎么样可以保证不用那么多内存空间,感觉其他都挺好的,就mle

Posted by goodpeter at 2007-09-22 17:03:34 on Problem 2418
typedef struct node{
	char *key;
	struct node* lchild;
	struct node* rchild;
	int count;
	struct node()
	{
		key = NULL;
		count = 1;
		lchild = NULL;
		rchild = NULL;
	}
}bstnode;
这是我定义的结构体,帮忙看看这个很用内存的吗 ?

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator