> 其他 >
用单链表求两个集合的交集
人气:155 ℃ 时间:2020-03-11 08:24:19
解答
struct Link{int data;struct Link *next;};struct Link *CreateLink(){struct Link *head=NULL,*p=NULL,*q=NULL;head = (struct Link *)malloc(sizeof(struct Link));head->next = NULL;p = head;int n=1;printf("P...
推荐
猜你喜欢
© 2026 79432.Com All Rights Reserved.
电脑版|手机版