IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> JavaScript知识库 -> 使用 js 实现 栈 -> 正文阅读

[JavaScript知识库]使用 js 实现 栈

栈是一种特殊的列表,栈内的元素只能通过栈顶访问,栈是一种后入先出的数据结构。

参数

接收的参数为数组类型。

属性及方法

栈的抽象数据类型定义

列表属性或方法描述
top属性记录栈顶元素的位置,同时也为了标记哪里可以加入新元素,当向栈内压入元素时,top 增大,从栈内弹出元素时,top 减小
push方法向栈内压入元素
pop方法从栈内弹出元素
peek方法返回栈顶元素,该元素依然存在栈内
toString方法返回栈的字符串形式
clear方法清空栈
length方法返回栈内元素的个数

下面看下代码实现:

// ES5
function stack(data = []) {
  this.dataStore = data
  this.top = data.length
  this.push = push
  this.pop = pop
  this.peek = peek
  this.toString = toString
  this.clear = clear
  this.length = length
}

function push(element) {
  this.dataStore.push(element)
  this.top++
}

function pop() {
  this.top--
  return this.dataStore.pop()
}

function peek() {
  return this.top > 0 ? this.dataStore[this.top - 1] : undefined
}

function toString() {
  return this.dataStore.join()
}

function clear() {
  this.top = 0
  this.dataStore = []
}

function length() {
  return this.top
}

// ES6
class stack6 {
  constructor(data = []) {
    this.top = data.length
    this.dataStore = data
  }

  push(element) {
    this.dataStore.push(element)
    this.top++
  }
  
  pop() {
    this.top--
    return this.dataStore.pop()
  }
  
  peek() {
    return this.top > 0 ? this.dataStore[this.top - 1] : undefined
  }
  
  toString() {
    return this.dataStore.join()
  }
  
  clear() {
    this.top = 0
    this.dataStore = []
  }
  
  length() {
    return this.top
  }
}

栈 的简单使用

数字的进制转换。

将数字转化为二至九进制的数字:

  1. 第一位为 num % base,将次值压入栈
  2. Math.floor(num / base) 赋值给 num
  3. 重复步骤1和2,直到 num === 0 且没有余数
  4. 将栈内的元素依次弹出,拼接位字符串
/**
 * 将数字转化为二至九进制的数字
 * @param {Number} num 是需要转化的数字
 * @param {Number} base 是要转化为几进制
*/
function mulBase(num, base) {
  const stackEg = new stack()
  do {
    stackEg.push(num % base)
    num = Math.floor(num / base)
  } while (num > 0)
  let converted = ''
  while (stackEg.length() > 0) {
    converted += stackEg.pop()
  }
  return converted
}
console.log(mulBase(8, 2))
console.log(parseInt(1000, 2))

将二至九进制的数字转化为十进制数字:

  1. num 转换为字符串,再转换为数组,将其倒序,依次压入栈
  2. 依次执行 拿到栈顶元素 * (基数的对应栈top次方)
/**
 * 将二至九进制的数字转化为十进制数字
 * @param {Number} num 是需要转化的数字
 * @param {Number} base 是要转化为几进制
*/
function basemul(num, base) {
  const stackEg = new stack(String(num).split('').reverse())
  let res = 0
  while (stackEg.length() > 0) {
    res += stackEg.pop() * Math.pow(base, stackEg.top)
  }
  return res
}
console.log(basemul(1000, 2))

回文

回文 简单来说就是 字符串 === 字符串顺序反转 ,使用栈实现:

  1. 将字符串每一位依次压入栈
  2. 将栈的元素依次弹出,拼接成字符串
  3. 判断 拼接的字符串是否等于原字符串
/**
 * 是否为回文
 * @param {String} word 是需要判断的字符串
*/
function isPalindrome(word) {
  const stackEg = new stack(word.split(''))
  let rword = ''
  while (stackEg.length() > 0) {
    rword += stackEg.pop()
  }
  return rword === word
}
function isPalindrome2(word) {
  return word.split('').reverse().join('') === word
}
  JavaScript知识库 最新文章
ES6的相关知识点
react 函数式组件 & react其他一些总结
Vue基础超详细
前端JS也可以连点成线(Vue中运用 AntVG6)
Vue事件处理的基本使用
Vue后台项目的记录 (一)
前后端分离vue跨域,devServer配置proxy代理
TypeScript
初识vuex
vue项目安装包指令收集
上一篇文章      下一篇文章      查看所有文章
加:2022-02-03 01:06:53  更:2022-02-03 01:09:46 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 11:27:41-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码