摘要: c语言里,不能直接在定义结构体时,给其中元素赋值。 #include<stdio.h>#include<malloc.h>typedef struct tree{ int data; struct tree *left; struct tree *next=NULL;}zhizhen;int mai 阅读全文
posted @ 2017-11-04 16:10 balance_uit 阅读(1334) 评论(0) 推荐(0)