-
Notifications
You must be signed in to change notification settings - Fork 26
/
index.html
106 lines (106 loc) · 7.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<title>算法可视化</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" />
<script src="jquery.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" href="css/index.css" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<div class="main">
<div class="header">
<img class="logo" src="image/logo.png" alt="logo" onclick="window.location.href='index.html'"/>
</div>
<div class="arithmetic">
<div class="arithmeticList">
<div class="pictureAndDes">
<a href="list/linearList.html" id="lLink" style="text-decoration:none;">
<img src="image/线性表.jpg" alt="" class="picture"/></a>
<p class="description">线性表</p>
</a>
</div>
<div class="buttonList">
<button type="button" id="linearList" class="btn btn-primary btn-sm lineBtn" onclick="window.location.href='list/linearList.html'">顺序表</button>
<button type="button" id="singleList" class="btn btn-primary btn-sm lineBtn" onclick="window.location.href='list/singleList.html'">单链表</button>
<button type="button" id="stackList" class="btn btn-primary btn-sm lineBtn" onclick="window.location.href='list/stackList.html'">栈</button>
<button type="button" id="queueList" class="btn btn-primary btn-sm lineBtn" onclick="window.location.href='list/queueList.html'">队列</button>
<button type="button" id="factorial" class="btn btn-primary btn-sm lineBtn" onclick="window.location.href='list/factorial.html'">阶乘</button>
<button type="button" id="linkedQueue" class="btn btn-primary btn-sm lineBtn" onclick="window.location.href='list/linkedQueue.html'">链式队列</button>
</div>
</div>
<div class="arithmeticList">
<div class="pictureAndDes">
<a href="tree/BST.html" id="tLink" style="text-decoration:none;">
<img src="image/二叉树.jpg" alt="" class="picture"/>
<p class="description">树</p>
</a>
</div>
<div class="buttonList">
<button type="button" class="btn btn-primary btn-sm treeBtn" onclick="window.location.href='tree/BST.html'">BST</button>
<button type="button" id="heap" class="btn btn-primary btn-sm treeBtn" onclick="window.location.href='tree/heap.html'">堆</button>
<button type="button" class="btn btn-primary btn-sm treeBtn" onclick="window.location.href='tree/HuffmanTree.html'">霍夫曼树</button>
<button type="button" id="avlTree" class="btn btn-primary btn-sm treeBtn" onclick="window.location.href='tree/avlTree.html'">AVL树</button>
<button type="button" id="BT2T" class="btn btn-primary btn-sm treeBtn" onclick="window.location.href='tree/BT2T.html'">二叉树转换</button>
<button type="button" id="ThrdBtree" class="btn btn-primary btn-sm treeBtn" onclick="window.location.href='tree/thrdBtree.html'">线索树</button>
</div>
</div>
<div class="arithmeticList">
<div class="pictureAndDes">
<a href="graph/graphDFSTraverse.html" id="plink" style="text-decoration:none;">
<img src="image/图.jpg" alt="" class="picture"/>
<p class="description">图</p>
</a>
</div>
<div class="buttonList">
<button type="button" id="graphDFSTraverse" class="btn btn-primary graphBtn" onclick="window.location.href='graph/graphDFSTraverse.html'">DFS遍历</button>
<button type="button" id="graphBFSTraverse" class="btn btn-primary graphBtn" onclick="window.location.href='graph/graphBFSTraverse.html'">BFS遍历</button>
<button type="button" id="prim" class="btn btn-primary graphBtn" onclick="window.location.href='graph/prim.html'">Prim</button>
<button type="button" id="kruskal" class="btn btn-primary graphBtn" onclick="window.location.href='graph/kruskal.html'">Kruskal</button>
<button type="button" id="dijkstra" class="btn btn-primary graphBtn" onclick="window.location.href='graph/dijkstra.html'">Dijkstra</button>
<button type="button" id="floyd" class="btn btn-primary graphBtn" onclick="window.location.href='graph/floyd.html'">Floyd</button>
</div>
</div>
<div class="arithmeticList">
<div class="pictureAndDes">
<a href="sort/compareSort.html" id="sLink" style="text-decoration:none;">
<img src="image/排序.jpg" alt="" class="picture"/>
<p class="description">排序</p>
</a>
</div>
<div class="buttonList">
<!-- <button type="button" class="btn btn-sm btn-primary sortBtn" id="insertCompare">插入排序</button>
<button type="button" class="btn btn-sm btn-primary sortBtn" id="shellCompare">希尔排序</button>
<button type="button" class="btn btn-sm btn-primary sortBtn" id="bubbleCompare">冒泡排序</button>
<button type="button" class="btn btn-sm btn-primary sortBtn" id="selectCompare">选择排序</button>
<button type="button" class="btn btn-sm btn-primary sortBtn" id="quickCompare">快速排序</button>
<button type="button" class="btn btn-sm btn-primary sortBtn" id="heapSort">堆排序</button>
<button type="button" class="btn btn-sm btn-primary sortBtn" id="mergeCompare">归并排序</button>
<button type="button" class="btn btn-sm btn-primary sortBtn" id="radixSo">基数排序</button> -->
<button type="button" class="btn btn-primary sortBtn" id="compareSort" onclick="window.location.href='sort/compareSort.html'">比较排序</button>
<button type="button" class="btn btn-primary sortBtn" id="radixSort" onclick="window.location.href='sort/radixSort.html'">基数排序</button>
<button type="button" class="btn btn-primary sortBtn" id="heapSort" onclick="window.location.href='sort/heapSort.html'">堆排序</button>
</div>
</div>
<div class="arithmeticList">
<div class="pictureAndDes">
<a href="string/patternMatch.html" id="stLink" style="text-decoration:none;">
<img src="image/字符串.jpg" alt="" class="picture"/>
<p class="description">字符串</p>
</a>
</div>
<div class="buttonList">
<button type="button" class="btn btn-primary string" id="patternMatch" onclick="window.location.href='string/patternMatch.html'">模式匹配</button>
<button type="button" class="btn btn-primary " id="sequentialSearch" onclick="window.location.href='string/search.html'">查找</button>
<!-- <button type="button" class="btn btn-primary " id="binarySearch" onclick="window.location.href='string/stringMatch.html'">二分查找</button> -->
<!-- <button type="button" class="btn btn-primary " onclick="">哈希查找</button> -->
</div>
</div>
</div>
</div>
<script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_1256898616'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s11.cnzz.com/z_stat.php%3Fid%3D1256898616%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script>
</body>
</html>