zoukankan
html css js c++ java
javascript实现的Hashtable
<
SCRIPT LANGUAGE
=
"
JavaScript
"
>
<!--
function
HashTable()
{
this
.Items
=
[];
this
.Count
=
function
()
{
return
this
.Items.length;}
;
//
长度
this
.DictionaryEntry
=
function
(key,value)
{
this
.Key
=
key
||
null
;
this
.Value
=
value
||
null
;
}
this
.Add
=
function
(key,value)
{
this
.Items.push(
new
this
.DictionaryEntry(key,value));}
this
.Clear
=
function
()
{
this
.Items.length
=
0
;}
this
.Remove
=
function
(key)
{
var
index
=
this
.GetIndexWithKey(key);
if
(index
>-
1
)
this
.Items.splice(index,
1
);
}
this
.GetValue
=
function
(key)
{
var
index
=
this
.GetIndexWithKey(key);
if
(index
>-
1
)
return
this
.Items[index].Value;
}
this
.ContainsKey
=
function
(key)
{
if
(
this
.GetIndexWithKey(key)
>-
1
)
return
true
;
return
false
;
}
this
.ContainsValue
=
function
(value)
{
if
(
this
.GetIndexWithValue(value)
>-
1
)
return
true
;
return
false
;
}
this
.Keys
=
function
()
{
var
iLen
=
this
.Count();
var
resultArr
=
[];
for
(
var
i
=
0
;i
<
iLen;i
++
)
resultArr.push(
this
.Items[i].Key);
return
resultArr;
}
this
.Values
=
function
()
{
var
iLen
=
this
.Count();
var
resultArr
=
[];
for
(
var
i
=
0
;i
<
iLen;i
++
)
resultArr.push(
this
.Items[i].Value);
return
resultArr;
}
this
.IsEmpty
=
function
()
{
return
this
.Count()
==
0
;}
this
.GetIndexWithKey
=
function
(key)
{
var
iLen
=
this
.Count();
for
(
var
i
=
0
;i
<
iLen;i
++
)
if
(
this
.Items[i].Key
===
key)
return
i;
return
-
1
;
}
this
.GetIndexWithValue
=
function
(value)
{
var
iLen
=
this
.Count();
for
(
var
i
=
0
;i
<
iLen;i
++
)
if
(
this
.Items[i].Value
===
value)
return
i;
return
-
1
;
}
}
var
my
=
new
HashTable();
my.Add(
"
name
"
,
"
blueKnight
"
);
my.Add(
"
age
"
,
'
24
'
);
my.Add(
"
sex
"
,
"
boy
"
);
alert(my.Count());
alert(my.ContainsValue(
"
boy
"
));
alert(my.GetValue(
"
name
"
))
for
(
var
i
in
my.Items)
{
alert(
"
Key:
"
+
my.Items[i].Key
+
"
--Value:
"
+
my.Items[i].Value);
}
my.Remove(
"
age
"
);
alert(my.Keys()
+
'
-
'
+
my.Values()
+
'
\n\r
'
);
//
-->
<
/
SCRIPT>
原主体部分摘自于网络。
本人对原js中存在的部分bug进行了修正。
查看全文
相关阅读:
024 Go语言基础之文件操作
023 Go语言标准库之log
022 Go语言标准库之flag
021 Go语言标准库之time
019 Go语言基础之单元测试
020 Go语言标准库之fmt
数据导出为Excel(未完)
.net+EF+mvc通过EasyUI的DataGrid实现增删改查
EasyUI入门,DataGrid(数据表格)
基于jQuery的用户界面插件集合---EasyUI
原文地址:https://www.cnblogs.com/ding0910/p/1106599.html
最新文章
关于目录的操作|*|<>|opendir |readdir|unlink|find2perl|rename|readlink|oct()|utime
文件操作符|-e|-M|-s|-A|_|-r -w $filename|stat|localtime|&|>>|<<
unless|until|LABEL|{}|last|next|redo| || |//|i++|++i
计算蛋白质一致率
ALG 4-5: Minimum Spanning Tree
ALG 4-4:Shortest Paths in a Graph (Dijkstra 算法)
似然函数将概率转化成对数形式的原因
GBDT如何选择特征
GBDT如何分类
约束优化问题的转化——拉格朗日对偶性
热门文章
yolo-V2损失函数理解
L1损失函数和L2损失函数
L1正则化和L2正则化
双线性插值
二维数组的查找
删除链表中重复(数字域)的节点
027 Go语言标准库之net_http
026 Go语言标准库之template
025 Go语言标准库之strconv
02-25 scikit-learn库之决策树
Copyright © 2011-2022 走看看