-
Notifications
You must be signed in to change notification settings - Fork 0
/
sorting_algorithm_merge_sort.html
45 lines (45 loc) · 1.65 KB
/
sorting_algorithm_merge_sort.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
<!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">
<link rel="stylesheet" href="mystyle.css">
<title>Portfolio</title>
</head>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<div class="active dropdown">
<button class="dropbtn">Sorting Algorithm
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="sorting_algorithm_bubble_sort.html">Bubble Sort</a>
<a href="sorting_algorithm_quick_sort.html">Quick Sort</a>
<a href="sorting_algorithm_heap_sort.html">Heap Sort</a>
<a class="active" href="sorting_algorithm_merge_sort.html">Merge Sort</a>
</div>
</div>
<div class=" dropdown">
<button class="dropbtn">Searching Algorithm
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="searching_algorithm_bfs.html">BFS</a>
<a href="searching_algorithm_dfs.html">DFS</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Artificial Intelligence
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="artificial_intelligence_cifar-10.html">CIFAR-10</a>
<a href="artificial_intelligence_vae.html">VAE</a>
</div>
</div>
<a href="contact.html">Contact</a>
</div>
</body>
</html>