博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TypeScript实现数据结构(一)栈,队列,链表
阅读量:6231 次
发布时间:2019-06-22

本文共 3191 字,大约阅读时间需要 10 分钟。

最近在学习typescript,就想着用typescript自己练习一些基本的数据结构,记录一下,读者有什么想法和建议也可以交流一下。

class Stack
{ private items = null; constructor() { this.items = new Array
(); } push(data: T): void { this.items.push(data); } pop(): T { return this.items.pop(); } top(): T { return this.items[this.items.length - 1]; } isEmpty(): boolean { return this.items.length === 0; } size(): number { return this.items.length; } clear(): void { this.items = new Array
(); } print(): void { console.log(this.items); }}

队列

class Queue
{ private items = null; constructor() { this.items = new Array
(); } enqueue(data: T): void { this.items.push(data); } dequeue(): T { return this.items.shift(); } head(): T { return this.items[0]; } size(): number { return this.items.length; } clear(): void { this.items = new Array
(); } isEmpty(): boolean { return this.items.length === 0; } tail(): T { return this.items[this.items.length - 1]; } print(): void { console.log(this.items); }}

链表

class LinkNode
{ public data: T; public next: LinkNode
; constructor(data: T) { this.data = data; this.next = null; }}class LinkList
{ private head: Node
; private length: number; private tail: Node
; constructor() { this.head = null; this.tail = null; } append(data: T): boolean { let new_node = new Node(data); if (this.head == null) { this.head = new_node this.tail = new_node; } else { this.tail.next = new_node; this.tail = this.tail.next; } this.length++; return true; } len(): number { return this.length; } insert(index: number, data: T): boolean { if (index == this.length) { return this.append(data); } else { let insert_index = 1; let cur_node = this.head; while(insert_index < index) { cur_node = cur_node.next; insert_index++; } let next_node = cur_node.next; let new_node = new Node(data); cur_node.next = new_node; cur_node.next.next = next_node; } this.length++; return true; } remove(index): Node
{ if (index < 0 || index >= this.length) { return null; } else { let del_node = null; if (index == 0) { del_node = this.head; this.head = this.head.next; } else { let del_index = 0; let pre_node = null; let cur_node = this.head; while (del_index < index) { del_index++; cur_node = cur_node.next; } pre_node = cur_node; cur_node = cur_node.next; pre_node.next = cur_node; //如果删除的是尾节点 if (cur_node == null) { this.tail = pre_node; } this.length--; return del_node; } } } get(index): Node
{ if (index < 0 || index > this.length) { return null; } let node_index = 0; let cur_node = this.head; while(node_index < index) { node_index++; cur_node = cur_node.next; } return cur_node; } print(): void { let cur = this.head; while(cur != null) { console.log(cur.data); cur = cur.next; } }}

转载地址:http://eyhna.baihongyu.com/

你可能感兴趣的文章
【面试题整理】数据库的优化方案有哪些
查看>>
hdu-5015-233 Matrix-矩阵
查看>>
Android中asset文件夹和raw文件夹区别与用法
查看>>
poj3264
查看>>
Eclipse中git插件导入远程库和上传项目源代码到远程库
查看>>
linux内核剖析-IBM
查看>>
关于Snmp的Trap代码开发之坑
查看>>
TCP 函数
查看>>
CentOS添加新硬盘到新的分区(xfs/ext4) 或者添加新分区
查看>>
20个Linux服务器安全强化建议(二)
查看>>
php-fpm的启动、配置及常见错误
查看>>
在 Linux 上管理加密密钥的最佳体验
查看>>
值得学习的C语言开源项目
查看>>
SYSTEMTAP -ORACLE
查看>>
[唐诗]183清平调词三首-李白
查看>>
深入敌后,揭开骇客真面目
查看>>
使用 Drag and Drop 给Web应用提升交互体验
查看>>
Flutter 三探
查看>>
一道java面试题分析及思考
查看>>
全栈 - 12 数据库 用Python操作MySQL
查看>>