検索結果 1 件
- 8年前
- フォーラム: C言語何でも質問掲示板
- トピック: 二分木について
- 返信数: 2
- 閲覧数: 1980
二分木について
二分木のプログラムについて途中まで作ったのですがここから先がうまくいかないので質問させてください。 #include<stdio.h> #include<stdlib.h> #include<string.h> struct node{ char sentence[100]; struct node *yes; struct node *no; }; void error(char *s); struct node *make_node(); void questionTree(struct node *node); int main(void){ struct node *node; str...