| ||||||||||
| Online Judge | Problem Set | Authors | Online Contests | User | ||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest | |||||||||
怎么样可以保证不用那么多内存空间,感觉其他都挺好的,就mletypedef 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: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator