js数据结构描述--列表

<script type="text/javascript">
	/**
	 * 数据结构--列表
	 * 【什么是列表】
	 * 【列表的使用场景】
	 */
	function list(){
		this.dataStore = [];
		this.length = 0;
		this.postion = 0;
		this.append = append;
		this.contains = contains;
		this.push = push;
		this.pop = pop;
		this.remove = remove;
		this.clear = clear;
	}
	
	
	//给列表添加元素
	function append(element){
		this.dataStore[this.length] = element;
	}
	
	//从列表中删除元素
	function remove(element){
	
	}
	
	
	
	
	
	
</script>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。