数据结构57-双向链表转成字符串代码
2024-06-26 06:20:21 阅读次数:22
html,i++,javascript
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>双向链表</title>
</head>
<body>
<script>
function DoubleList(){
this.head=null
this.tail=null
this.length=0
function Node(data){
this.data=data
this.prev=null
this.next=null
}
DoubleList.prototype.append=function(data){
var newNode=new Node(data)
if(this.length==0){
this.head=newNode
}else{
var current=this.head
while(current.next){
current=current.next
}
current.next=newNode
}
this.length+=1
}
DoubleList.prototype.backwardString=function(data){
//定义变量
var current=this.head
var resultString=""
while(current){
resultString+=current.data+" "
current=current.next
}
return resultString
}
DoubleList.prototype.forwardString=function(data){
//定义变量
var current=this.tail
var resultString=""
while(current){
resultString+=current.data+" "
current=current.prev
}
return resultString
}
DoubleList.prototype.toString=function(data){
//定义变量
return this.backwardString()
}
}
</script>
</body>
</html>
版权声明:本文内容来自第三方投稿或授权转载,原文地址:https://blog.51cto.com/u_15460007/6049340,作者:前端导师歌谣,版权归原作者所有。本网站转在其作品的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如因作品内容、版权等问题需要同本网站联系,请发邮件至ctyunbbs@chinatelecom.cn沟通。
上一篇:【Python基础知识】
下一篇:学习笔记jira项目35-清除前面课程输入的警告信息