数据结构
ChinaYiqun
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python 中队列的常见操作
Queue.Queue(maxsize=0) FIFO, 如果maxsize小于1就表示队列长度无限 Queue.LifoQueue(maxsize=0) LIFO, 如果maxsize小于1就表示队列长度无限 Queue.qsize()返回队列的大小 Queue.empty()如果队列为空,返回True,反之False Queue.full()如果队列满了...原创 2019-12-15 19:33:08 · 660 阅读 · 0 评论 -
C语言实现多项式的相加(链表)
#include #include struct node { int coef; //系数 int index; //指数 struct node *next; }; //初始化linklist struct node *init_ll() { struct node *p; p = (struct node *)malloc(s原创 2016-10-26 16:41:20 · 5437 阅读 · 4 评论
分享