zoukankan
html css js c++ java
javascript中实现的链表
function
Entry(next, data)
{
this
.next
=
next
this
.data
=
data
}
function
Iterator(node)
{
this
.cousor
=
node
this
.hasNext
=
function
()
{
return
(
this
.cousor.next
!=
null
);
}
this
.next
=
function
()
{
var
rt
=
this
.cousor.next
this
.cousor
=
this
.cousor.next
return
rt.data
}
}
function
LinkedList()
{
this
.head
=
new
Entry(
null
,
null
)
this
.size
=
function
()
{
var
size
=
0
if
(
this
.head
==
null
)
{
return
size
}
var
p
=
this
.head.next
for
(; p
!=
null
; p
=
p.next)
size
++
;
return
size;
}
this
.clear
=
function
()
{
this
.head
=
null
}
this
.getNode
=
function
(idx)
{
var
pos
=
-
1
;
var
p
=
this
.head
while
(p
!=
null
&&
pos
<
idx)
{
p
=
p.next;
pos
++
;
}
return
p;
}
this
.get
=
function
(idx)
{
return
this
.getNode(idx).data
}
this
.add
=
function
(data)
{
this
.insert(
this
.size(), data)
}
this
.insert
=
function
(idx, data)
{
var
p
=
this
.getNode(idx
-
1
);
/**/
/*
注意查询idx-1
*/
if
(p
==
null
)
{
return
}
var
node
=
new
Entry(p.next, data)
p.next
=
node
}
this
.remove
=
function
(idx)
{
var
prenode
=
this
.getNode(idx
-
1
)
var
node
=
this
.getNode(idx)
if
(prenode
==
null
||
node
==
null
)
{
return
null
}
prenode.next
=
node.next
return
node.data
}
this
.iterator
=
function
()
{
return
new
Iterator(
this
.head)
}
this
.swap
=
function
(a, b)
{
var
av
=
this
.getNode(a)
var
bv
=
this
.getNode(b)
var
tmp
=
av.data
av.data
=
bv.data
bv.data
=
tmp
}
}
查看全文
相关阅读:
Linux的Service/Daemon你真的懂了吗?
linux下关于svn提交的时候强制写注释
protobuf C++ 使用示例
du 使用详解 linux查看目录大小 linux统计目录大小并排序 查看目录下所有一级子目录文件夹大小 du -h --max-depth=1 |grep [
USVN
关于分布式系统的数据一致性问题
Linux环境下SVN服务器端的安装与配置
linux下svn服务器安装配置与启动
HTML5 直播协议之 WebSocket 和 MSE
CDN的实现原理
原文地址:https://www.cnblogs.com/jacktu/p/1011505.html
最新文章
ABAP的Package interface, 安卓的manifest.xml和Kubernetes的Capabilities
给广大码农分享福利:一个业界良心的github仓库,中文计算机资料
SAP ERP和C4C Account和Contact的双向同步
SAP C4C Opportunity和SAP ERP Sales流程的集成
在SAP C4C里触发SAP ERP的ATP check和Credit check
如何对ABAP SE80 workbench做增强
ABAP Development Tools的语法高亮实现原理
让您的Eclipse具有千变万化的外观
SAP GUI里Screen Painter的工作原理
使用com.sun.imageio.plugins.png.PNGMetadata读取图片的元数据
热门文章
XPath
requests库
初级爬虫--爬取拉勾网职位信息
session和cookie的区别和联系
回溯法--全排列
(三)django--带Template的网站
(二)django--带APP的网站
(一)django创建
python *args,**kwargs参数
python wraps的作用
Copyright © 2011-2022 走看看