zoukankan
html css js c++ java
队列、栈和链表
队列:
先进先出
的数据结构,有点像排队买票
它只允许在队列的首部(head)进行删除操作,称为“出队”;在队列的尾部(tail)进行插入操作,称为“入队”
栈,是
后进后出
的数据结构
查看全文
相关阅读:
Codeforces Round #600 (Div. 2) A. Single Push
Codeforces Round #600 (Div. 2) B. Silly Mistake
106. 从中序与后序遍历序列构造二叉树
23. 合并K个升序链表
203. 移除链表元素
328. 奇偶链表
86. 分隔链表
面试题 02.05. 链表求和
面试题 02.02. 返回倒数第 k 个节点
剑指 Offer 18. 删除链表的节点
原文地址:https://www.cnblogs.com/skylover/p/7120343.html
最新文章
PAT 甲级 1102 Invert a Binary Tree (25 分)
PAT 甲级 1102 Invert a Binary Tree (25 分)
OSCP Learning Notes
OSCP Learning Notes
OSCP Learning Notes
OSCP Learning Notes
OSCP Learning Notes
OSCP Learning Notes
OSCP Learning Notes
OSCP Learning Notes
热门文章
OSCP Learning Notes
OSCP Learning Notes
AcWing 1027. 方格取数
高精除高精
Codeforces Round #601 (Div. 2) C League of Leesins
Codeforces Round #601 (Div. 2) B Fridge Lockers
Codeforces Round #601 (Div. 2) A Changing Volume
Codeforces Round #600 (Div. 2) E .Antenna Coverage
Codeforces Round #600 (Div. 2) D。 Harmonious Graph
Codeforces Round #600 (Div. 2) C
Copyright © 2011-2022 走看看