设顺序表L中的元素递增有序.试写一算法,将数据元素x插入到顺序表L的适当位置,以保持该表的有序性.
题目
设顺序表L中的元素递增有序.试写一算法,将数据元素x插入到顺序表L的适当位置,以保持该表的有序性.
答案
struct list *p,*q,*s,*head;p = head;while(p != NULL){ if(x > p->data){q = p; p = p->next;}else{s = (struct list*)malloc(sizeof(struct list));s->data = x;q->next = s;s->next = p;}}
举一反三
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
最新试题
热门考点