博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js数据结构描述--栈
阅读量:6268 次
发布时间:2019-06-22

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

function Stack(){	this.dataStore = [];	this.top = 0;	this.pop = pop;	this.push = push;	this.peek = peek;	this.clear = clear;	this.length = length;	this.show = show;}function push(element){	this.dataStore[this.top++] = element;}function pop(){	this.dataStore[--this.top];}function peek(){	return this.dataStore(this.top - 1);}function clear(){	this.dataStore = [];}function length(){	return this.dataStore.length;}function show(){	return this.dataStore;}	var stack = new Stack();stack.push('张三');stack.push('李四');stack.push('王五');stack.pop();stack.push('赵六');alert(stack.show());

 

转载于:https://www.cnblogs.com/liwuming/p/4488956.html

你可能感兴趣的文章
Mysql存储过程
查看>>
NC营改增
查看>>
Lua
查看>>
Mysql备份系列(3)--innobackupex备份mysql大数据(全量+增量)操作记录
查看>>
postgresql 获取刚刚插入的数据主键id
查看>>
C# Activex开发、打包、签名、发布 C# Activex开发、打包、签名、发布 [转]
查看>>
05-Vue入门系列之Vue实例详解与生命周期
查看>>
验证码展示
查看>>
浅谈大型web系统架构
查看>>
淘宝大秒系统设计详解
查看>>
linux如何修改登录用户密码
查看>>
Kali Linux 2017中Scapy运行bug解决
查看>>
Python监控进程性能数据并画图保存为PDF文档
查看>>
Android属性动画完全解析(下),Interpolator和ViewPropertyAnimator的用法
查看>>
Mac OS 10.10.3下Apache + mod_wsgi配置【一】
查看>>
Hibernate基于注解的双向one-to-many映射关系的实现
查看>>
算法竞赛入门经典 例题 3-2 蛇形填数
查看>>
remove-duplicates-from-sorted-list I&II——去除链表中重复项
查看>>
c++ 网络库
查看>>
Linux 格式化扩展分区(Extended)
查看>>