-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathds.html
More file actions
176 lines (168 loc) · 9.82 KB
/
Copy pathds.html
File metadata and controls
176 lines (168 loc) · 9.82 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html>
<head>
<title>Data Structure</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, intial-scale=1.0, shrink-to-fit=no">
<meta name="keywords" content="codeworld,code, mmmut codes, html, css, c, data structure, java, c++, learning, programming, development,tutorials,practicals,examples">
<meta name="description" content="It is an educational website for learning coding online. It includes tutorials, references, practicals related to C, C++, Java, Data Structure etc.">
<meta name="author" content="Prashant Kumar Gupta">
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" href="css/font-awesome.css" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css"/>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="shortcut icon" href="img/logo.jpg">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-156947534-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-156947534-1');
</script>
</head>
<body>
<!-- Header Section -->
<nav id="myNavbar" class="rounded navbar fixed-top navbar-expand-md navbar-dark">
<div>
<button type="button" class="navbar-toggler" id="sidebarCollapse" data-toggle="collapse"
aria-expanded="false" aria-label="Toggle navigation">
<span class="fa fa-align-left"></span>
</button>
</div>
<a class="navbar-brand" href="index.html">
<img src="img/logo.jpg" alt="" class="rounded" width="30" height="30"> CodeWorld</a>
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#mymenu"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="fa fa-th"></span>
</button>
<div class="collapse navbar-collapse" id="mymenu">
<ul class="mr-auto navbar-nav nav-fill colors">
<li class="nav-item"><a class="nav-link" href="index.html">Home<span class="sr-only"></span></a> </li>
<li class="nav-item"><a class="nav-link" href="c.html">C </a> </li>
<li class="nav-item"><a class="nav-link" href="cpp.html">C++ </a></li>
<li class="nav-item active"><a class="nav-link" href="ds.html">Data Structure</a></li>
<li class="nav-item"><a class="nav-link" href="java.html">Java</a></li>
<li class="nav-item dropdown align-self-center">
<button class="nav-link dropdown-toggle" href="#" id="practical" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Practical
</button>
<div class="dropdown-menu" aria-labelledby="practical">
<a class="dropdown-item" href="acm.html">ACM</a>
<a class="dropdown-item" href="swl-4.html">SWL-4</a>
<a class="dropdown-item" href="cod.html">COD</a>
<a class="dropdown-item" href="dbms.html">DBMS</a>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="#contus">Contact Us</a></li>
</ul>
</div>
</nav>
<!-- left Sidebar -->
<div class="wrapper">
<nav id="sidebar" class="shadow-sm">
<div class="mt-5 sidebar-header">
<h3>Data Structure</h3>
</div>
<ul class="list-unstyled components">
<li class="active"><a href="#">Introduction</a></li>
<li><a href="ds/bubblesort.html">Bubble Sort</a></li>
<li><a href="ds/insertionsort.html">Insertion Sort</a></li>
<li><a href="ds/selectionsort.html">Selection Sort</a></li>
<li><a href="ds/heapsort.html">Heap Sort</a></li>
<li><a href="ds/quicksort.html">Quick Sort</a></li>
<li><a href="ds/stackarray.html">Stack Using Array</a></li>
<li><a href="ds/stackdynamicarray.html">Stack Using Dynamic Array</a></li>
<li><a href="ds/stacklinkedlist.html">Stack Using Linked List</a></li>
<li><a href="ds/queuearray.html">Queue Using Array</a></li>
<li><a href="ds/queuedynamicarray.html">Queue Using Dynamic Array</a></li>
<li><a href="ds/circularqueuelinkedlist.html">Circular Queue Using Linked List</a></li>
<li><a href="ds/dequeuearray.html">Double Ended Queue</a></li>
<li><a href="ds/linkedlist.html">Linked List</a></li>
<li><a href="ds/doublylinkedlist.html">Doubly Linked List</a></li>
</ul>
</nav>
<div class="pt-4 mt-5 container-sm" id="ds">
<h2 class="pl-2 mb-4 text-dark">Introduction to Data Structure</h2>
<div class="mb-5 shadow-sm card">
<div class="text-justify card-body">
<p class="p-2 text-dark">
In computer science, a data structure is a data organization, management, and storage format that enables efficient access and modification.
More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data.
</p>
<p class="p-2 text-dark">
Data Structures are structures programmed to store ordered data, so that various operations can be performed on it easily. It represents the knowledge of data to be organized in memory.
It should be designed and implemented in such a way that it reduces the complexity and increases the efficiency.
</p>
<h5 class="p-2">Uses of C Data Structure:</h5>
<ul>
<li>In general, data structures are used to implement the abstract data types.</li>
<li>Data structures are essential for managing large amounts of data, such as information kept in databases or indexing services, efficiently.</li>
<li> Data structures can be used to organize the storage and retrieval of information stored in both main memory and secondary memory.</li>
</ul>
<h5 class="p-2">Popular Data Structures:</h5>
<ul>
<li>Array</li>
<li>Linked Lists</li>
<li>Stack</li>
<li>Queue</li>
<li>Heap</li>
<li>Binary Tree</li>
<li>Binary Search Tree</li>
<li>Hashing</li>
<li>Matrix</li>
<li>Trie</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="mt-auto footer" id="contus">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<ul class="social" data-aos="flip-up">
<li><a href="https://www.facebook.com/imPGupta" target="_blank"><span class="fa fa-facebook"></span></a></li>
<li><a href="https://twitter.com/imPGupta_" target="_blank"><span class="fa fa-twitter"></span></a></li>
<li><a href="mailto:prashantkgupta17@gmail.com" target="_blank"><span class="fa fa-envelope"></span></a></li>
<li><a href="https://www.github.com/impgupta" target="_blank"><span class="fa fa-github"></span></a></li>
<li><a href="https://www.linkedin.com/in/impgupta" target="_blank"><span class="fa fa-linkedin"></span></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<p class="copyright"> © <script> document.write(new Date().getFullYear()) </script> Prashant KR. Gupta</p>
</div>
</div>
</div>
</footer>
</body>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script src="js/jquery-3.4.1.js"></script>
<script src="js/popper.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.4/clipboard.min.js"></script>
<script>
var clipboard = new ClipboardJS('.card-action #btn');
clipboard.on('success', function(e) {
console.info('Action:', e.action);
console.info('Text:', e.text);
console.info('Trigger:', e.trigger);
setTooltip('Copied!');
hideTooltip();
e.clearSelection();
});
clipboard.on('error', function(e) {
console.error('Action:', e.action);
console.error('Trigger:', e.trigger);
setTooltip('Failed!');
hideTooltip();
});
</script>
</body>
</html>