Queue_ADT-Linked_List:队列ADT的C程序-链接列表

时间:2021-04-16 13:41:54
【文件属性】:
文件名称:Queue_ADT-Linked_List:队列ADT的C程序-链接列表
文件大小:5KB
文件格式:ZIP
更新时间:2021-04-16 13:41:54
C Queue_ADT-Linked_List 队列ADT的C程序-链接列表 C是一种通用的过程计算机编程语言,支持带有静态类型系统的结构化编程,词法变量范围和递归。 通过设计,C提供了可有效映射到典型机器指令的构造。 在链接队列中,队列的每个节点都由两部分组成,即数据部分和链接部分。 队列中的每个元素都指向其在内存中的紧邻的下一个元素。 在链接队列中,内存中维护着两个指针,即前指针和后指针。 enQueue() This operation adds a new node after rear and moves rear to the next node. deQueue() This operation removes the front node and moves front to the next node. 时间复杂度:两个操作enqueue()和dequeue()的时间复
【文件预览】:
Queue_ADT-Linked_List-main
----Queue_ADT-Linked_List.c(1KB)
----Queue_ADT-Linked_List(17KB)
----README.md(959B)

网友评论