單鏈表_生成100個隨機數_查詢並輸出大於K的數

生成100個隨機數,並查詢大於k的輸出。 #include"stdio.h" #include"time.h" #include"stdlib.h" typedef struct node { int num; struct node * next; }node; void chaxun(int k,node *h)//查詢大於等於k的並輸出 { node *p=h->next; i
相關文章
相關標籤/搜索