网页
图片
视频
学术
词典
地图
更多
航班
笔记本
linked list
美
英
网络
链表;链表类;设计链表类
英英
网络释义
n.
1.
a
chain
of
data
items
,
each
associated
with
a
pointer
to
the
next
,
and
sometimes
also
to
the
previous
one
1.
链表
定义一
链表
(
LinkedList
)负责存储数据:第一和第三为操作数,第二个节点是运算符;定义一boolean变量负责记录等号是否 …
blog.csdn.net
|
基于675个网页
2.
链表类
...用和迭代器(Iterator) 1654.4.4
链表类
(
LinkedList
)的使用 1674.4.5 数组类(Arrays)和集合类(Collections)的使用 1694.4.6 哈希...
www.hopebook.net
|
基于28个网页
3.
设计链表类
数据结构C++语言描述(无觅处) ... 5.4 队列 Queue 9.3
设计链表类
LinkedList
5.1 栈 Stack ...
www.wumichu.com
|
基于16个网页
4.
实现堆栈的好方法
java 学习笔记... ... GB-2312/GBK 1 个字符占两个字节 2,
LinkedList
(
实现堆栈的好方法
) 2.Synchronized 修饰方法 ...
blog.csdn.net
|
基于13个网页
5.
链结串列
JWorld@TW Java论坛 - Java... ... java.util.Stack 堆叠 java.util.
LinkedList
链结串列
java.util.HashMap 杂凑表 ...
www.javaworld.com.tw
|
基于7个网页
6.
线性链表
...构”课(data structure), 然后会有
线性链表
(
linkedlist
)、哈希表(hashtable),以及其他诸如此类的课程。
blog.csdn.net
|
基于6个网页
7.
双向链表
java 中 系统同时提供了
双向链表
(
LinkedList
)和动态数组(ArrayList)两种机制。并且, Java 中有一个叫ListIterator 的迭代器。
www.docin.com
|
基于3个网页
8.
及队列
Java程序设计/唐大仕:图书比价:琅琅比价网 ... 7. 4. 1 Vector 向量 7. 4. 3
LinkedList
及队列
8. 3. 1 synchronized 关键字 ...
www.langlang.cc
|
基于3个网页
更多释义
收起释义
例句
释义:
全部
全部
,
链表
链表
,
链表类
链表类
,
设计链表类
设计链表类
类别:
全部
全部
,
口语
口语
,
书面语
书面语
,
标题
标题
,
技术
技术
来源:
全部
全部
,
字典
字典
,
网络
网络
难度:
全部
全部
,
简单
简单
,
中等
中等
,
难
难
更多例句筛选
收起例句筛选
1.
As Java SE programmers
,
we
might
be
tempted
to
use
an
existing
LinkedList
or
Queue
class
to
provide
a
data
store
to
hold
our
measurements
.
作为
JavaSE
编程
人员
,
可能
会
尝试
使用
一个
现有
的
LinkedList
或
Queue
类
,
来
提供
一个
数据
存储
,
容纳
我们
的
度量
结果
。
www.ibm.com
2.
To
implement
mutator
methods
,
the
new
LinkedList
class
serves
as
a
container
for an
internal
,
immutable
list
, as shown in
Listing
5
.
为了
执行
可变
的
方法
,
新
的
LinkedList
类
作为
一个
内部
不可变
的
链
表
的
容器
,
如
清单
5
所
示
。
www.ibm.com
3.
I
said
earlier
that
an
empty
list
is
a
LinkedList
containing
a
null
pointer
in
both
fields
.
我
前面
说过
,
空
链
表
就是
两个
域
都
包含
一个
空
指针
的
LinkedList
。
www.ibm.com
4.
To
keep
the
example
simple
,
I
implemented
only
a few
of
the
methods
defined
in
java
.
util.
LinkedList
.
为了
示例
的
简单
起见
,
我
只
执行
在
java.util.LinkedList
中
定义
的
一些
方法
。
www.ibm.com
5.
The
specific
algorithm
used
to
iterate
over an
array
(
versus
a
LinkedList
)
is
left
to the
design
pattern
implementation
.
用于
迭
代数
组
(
相对
于
LinkedList
)
的
具体
算法
留给
设计
模式
的
实现
部分
。
www.ibm.com
6.
Consider
the
following
singly
linked
implementation
of
the
LinkedList
class
,
with
a
dangling
composite
.
考虑
下面
LinkedList
类
的
单
连接
执行
,
它
有
一个
悬挂
复合
类型
。
www.ibm.com
7.
We
look up a
hash
table
with
linked
list
based
upon
the
hash
key for the
logging
token
name
.
我们
需要
根据
日志
标记
名
使用
的
散
列
值
对
具有
链
表
(
linkedlist
)
的
散
列表
进行
查询
。
www.ibm.com
8.
This
article
will
discuss
only
singly
linked
lists
;
the
terms
"
linked
lists"
and
"lists"
will
both
be
used
to
mean
singly
linked
lists
.
本文
将
只
讨论
单
链
表
;
术语
“
链
表
(
linkedlist
)
”
和
“
列表
(
list
)
”
都
被
用来
表示
单
链
表
。
www.ibm.com
9.
The JAX-
RPC
specification
does
not
define
a
mapping
for
the
LinkedList
class
.
JAX-RPC
规范
没有
为
LinkedList
类
定义
映射
。
www.ibm.com
10.
In
fact
,
as
I
mentioned
earlier
,
our
LinkedList
class
already
contains
a
subtle
but
devastating
bug
(
did
you
spot
it
?
)
.
实际上
,
就
象
我
前面
提到
的
,
我们
的
LinkedList
类
已经
包含
一个
微小
的
但
有
破坏性
的
错误
(
你
发现
了
吗?
)
www.ibm.com
1
2