[TS] Implement a doubly linked list in TypeScript
In a doubly linked list each node in the list stores the contents of the node and a pointer or reference to the next and the previous nodes in the list. It is one of the simplest way to store a collection of items.
In this lesson we cover how to create a doubly linked list data structure and how to use its strengths to implement an O(1) FIFO queue + O(1) LIFO stack. We also demonstrate why one would use it over a singly linked list. We also cover how to approach authoring such data structures.
The reason for use double linked list is that we can do LIFO opreation in O(1), in Single linked List, it requires O(n), because you need to go thought from the head, in order to know what will be the next tail item for new linked list.
/** * Linked list node */ export interface DoublyLinkedListNode<T> { value: T next?: DoublyLinkedListNode<T> prev?: DoublyLinkedListNode<T> } /** * Linked list for items of type T */ export class DoublyLinkedList<T> { public head?: DoublyLinkedListNode<T> = undefined; public tail?: DoublyLinkedListNode<T> = undefined; /** * Adds an item in O(1) **/ add(value: T) { const node: DoublyLinkedListNode<T> = { value, next: undefined, prev: undefined, } if (!this.head) { this.head = node; } if (this.tail) { this.tail.next = node; node.prev = this.tail; } this.tail = node; } /** * FIFO removal in O(1) */ dequeue(): T | undefined { if (this.head) { const value = this.head.value; this.head = this.head.next; if (!this.head) { this.tail = undefined; } else { this.head.prev = undefined; } return value; } } /** * LIFO removal in O(1) */ pop(): T | undefined { if (this.tail) { const value = this.tail.value; this.tail = this.tail.prev; if (!this.tail) { this.head = undefined; } else { this.tail.next = undefined; } return value; } } /** * Returns an iterator over the values */ *values() { let current = this.head; while (current) { yield current.value; current = current.next; } } }
import { DoublyLinkedList } from './doublyLinkedList'; test('basic', () => { const list = new DoublyLinkedList<number>(); list.add(1); list.add(10); list.add(5); expect(Array.from(list.values())).toMatchObject([1, 10, 5]); expect(list.dequeue()).toBe(1); expect(Array.from(list.values())).toMatchObject([10, 5]); expect(list.dequeue()).toBe(10); expect(list.dequeue()).toBe(5); expect(list.dequeue()).toBe(undefined); expect(Array.from(list.values())).toMatchObject([]); list.add(5); list.add(10); list.add(1); expect(Array.from(list.values())).toMatchObject([5, 10, 1]); expect(list.pop()).toBe(1); expect(list.dequeue()).toBe(5); expect(list.pop()).toBe(10); expect(list.pop()).toBe(undefined); expect(list.dequeue()).toBe(undefined); expect(Array.from(list.values())).toMatchObject([]); });
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
2016-10-03 [AngularFire 2] Object Observables - How to Read Objects from a Firebase Database?
2016-10-03 [AngularFire 2 ] Hello World - How To Write your First Query using AngularFire 2 List Observables ?