摘要: A "deque" is a data structure consisting of a list of items, on which the following operations are possible: Push(X,D): Insert item X on the front end 阅读全文
posted @ 2019-10-17 20:05 狂奔的小学生 阅读(958) 评论(0) 推荐(0) 编辑
摘要: 本题要求实现两个函数,一个将输入的学生成绩组织成单向链表;另一个将成绩低于某分数线的学生结点从链表中删除。 函数接口定义: struct stud_node *createlist(); struct stud_node *deletelist( struct stud_node *head, in 阅读全文
posted @ 2019-10-17 19:07 狂奔的小学生 阅读(2878) 评论(0) 推荐(0) 编辑