的根我有一個N叉樹結構像什麼在回答here解釋:使用malloc創建 typedef struct node {
int ID;
struct node *child; // points to (first) child
struct node *next; // points to next node at same level (sibling)
st
我想運行下面的樹使用Fork()的遞歸函數。但是,我只能生成前3個孩子,對於其餘的樹,我失去了正確的參考。 Tree Picture void process_tree(int level, char *child[], int n){
int i;
int index = child[n];
int myP;
int status;
if(n >= level){
exit