-
Notifications
You must be signed in to change notification settings - Fork 0
/
linked-lists.html
211 lines (184 loc) · 9.31 KB
/
linked-lists.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
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en"
>
<head>
<title>Linked Lists - Computer Science Notes</title>
<!-- Using the latest rendering mode for IE -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="canonical" href="./linked-lists.html">
<meta name="author" content="Sergio Ugalde Marcano" />
<meta name="description" content="General Intro Dynamic Data Structure Generally, a linked list is a linear data structure in which the each of the items contained within, points to a single, following item and is pointed by other item, except the last and first items respectively. This set of items and pointed items defines ..." />
<meta property="og:site_name" content="Computer Science Notes" />
<meta property="og:type" content="article"/>
<meta property="og:title" content="Linked Lists"/>
<meta property="og:url" content="./linked-lists.html"/>
<meta property="og:description" content="General Intro Dynamic Data Structure Generally, a linked list is a linear data structure in which the each of the items contained within, points to a single, following item and is pointed by other item, except the last and first items respectively. This set of items and pointed items defines ..."/>
<meta property="article:published_time" content="2015-04-13" />
<meta property="article:section" content="Parcial_3" />
<meta property="article:author" content="Sergio Ugalde Marcano" />
<!-- Bootstrap -->
<link rel="stylesheet" href="./theme/css/bootstrap.min.css" type="text/css"/>
<link href="./theme/css/font-awesome.min.css" rel="stylesheet">
<link href="./theme/css/pygments/friendly.css" rel="stylesheet">
<link href="./theme/css/typogrify.css" rel="stylesheet">
<link rel="stylesheet" href="./theme/css/style.css" type="text/css"/>
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="./" class="navbar-brand">
Computer Science Notes </a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a href="./pages/about.html">
About
</a></li>
<li >
<a href="./category/modelling.html">Modelling</a>
</li>
<li >
<a href="./category/parcial_1.html">Parcial_1</a>
</li>
<li >
<a href="./category/parcial_2.html">Parcial_2</a>
</li>
<li class="active">
<a href="./category/parcial_3.html">Parcial_3</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="./archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</div> <!-- /.navbar -->
<!-- Banner -->
<!-- End Banner -->
<div class="container">
<div class="row">
<div class="col-sm-9">
<section id="content">
<article>
<header class="page-header">
<h1>
<a href="./linked-lists.html"
rel="bookmark"
title="Permalink to Linked Lists">
Linked Lists
</a>
</h1>
</header>
<div class="entry-content">
<div class="panel">
<div class="panel-body">
<footer class="post-info">
<span class="label label-default">Date</span>
<span class="published">
<i class="fa fa-calendar"></i><time datetime="2015-04-13T00:00:00-05:00"> Mon 13 April 2015</time>
</span>
</footer><!-- /.post-info --> </div>
</div>
<h2 id="general-intro">General Intro</h2>
<h3 id="dynamic-data-structure">Dynamic Data Structure</h3>
<p>Generally, a linked list is a linear data structure in which the each of the items contained within, points to a single, following item and is pointed by other item, except the last and first items respectively. This set of items and pointed items defines the order of the linked list.
<em> Pointer: An object that points to a node, organizing the list by </em>atatching<em> elements.
</em> Node: Independent items or elements stored in memory (also refered as a pointee)</p>
<ul>
<li>
<p>Dynamic vs static:</p>
<ul>
<li>Static data structures, such as arrays, should be declared along with the size it should be allocated with. </li>
<li>In static data structures insertion and deletion is an expensive operation. </li>
<li>In dynamic data structures the opposite applies, however random access is not allowed, so certain operations, such as binary search are impossible to accomplish. </li>
<li>Extra space is required to store pointers along with the nodes. </li>
</ul>
</li>
<li>
<p>Items in a linked list must be <em>accessed sequentially</em>. So it is important notice, linked list do not easily allow <em>random access</em> which in some cases may make the use of a different data structure more suitable. </p>
</li>
</ul>
<h2 id="logical-operations">Logical operations</h2>
<ul>
<li>Linked lists may be reordered simply by changing the node a pointer aims, therefore saving the cost of actually moving data. </li>
</ul>
<h2 id="implementations-and-sketches">Implementations and sketches</h2>
<ul>
<li>Single-linked </li>
<li>Double-linked</li>
<li>Circular</li>
</ul>
<h2 id="appendix">Appendix</h2>
<ul>
<li>Basic operations</li>
<li>Stack and queue implmentation<ul>
<li>http://www.sanfoundry.com/c-program-stack-using-linked-list/</li>
<li>http://www.zentut.com/c-tutorial/c-stack-using-pointers/</li>
<li>www.c4learn.com/c-programs/c-program-to-implement-stack-operations-using-singly-linked-list.html</li>
</ul>
</li>
</ul>
<h2 id="experiments">Experiments</h2>
<iframe src="http://hascanvas.com/flowers/embed" frameborder="0" scrolling="no" style="width:600px;height:400px;"></iframe>
<iframe width="748" height="800" scrolling="no" frameborder="0" src="http://www.openprocessing.org/sketch/193632/embed/?width=720&height=720&border=true"></iframe>
<h4 id="resources">Resources</h4>
<p>http://www.geeksforgeeks.org/linked-list-vs-array/
http://crunchify.com/how-to-implement-a-linkedlist-class-from-scratch-in-java/
http://www.geeksforgeeks.org/memory-efficient-doubly-linked-list/
http://www.eternallyconfuzzled.com/tuts/datastructures/jsw_tut_linklist.aspx
http://www.cs.cmu.edu/~clo/www/<span class="caps">CMU</span>/DataStructures/Lessons/lesson1_2.htm</p>
<p>http://cslibrary.stanford.edu/103/LinkedListBasics.pdf</p>
</div>
<!-- /.entry-content -->
</article>
</section>
</div>
<div class="col-sm-3" id="sidebar">
<aside>
<section class="well well-sm">
<ul class="list-group list-group-flush">
<li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Social</span></h4>
<ul class="list-group" id="social">
<li class="list-group-item"><a href="https://www.facebook.com/profile.php?id=100001791786184"><i class="fa fa-facebook-square fa-lg"></i> facebook</a></li>
<li class="list-group-item"><a href="https://github.com/serch037"><i class="fa fa-github-square fa-lg"></i> github</a></li>
</ul>
</li>
<li class="list-group-item"><a href="./"><h4><i class="fa fa-tags fa-lg"></i><span class="icon-label">Tags</span></h4></a>
<ul class="list-group " id="tags">
</ul>
</li>
</ul>
</section>
</aside>
</div>
</div>
</div>
<footer>
<div class="container">
<hr>
<div class="row">
<div class="col-xs-10">© 2015 Sergio Ugalde Marcano
· Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>,
<a href="http://docs.getpelican.com/" target="_blank">Pelican</a>,
<a href="http://getbootstrap.com" target="_blank">Bootstrap</a> </div>
<div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div>
</div>
</div>
</footer>
<script src="./theme/js/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="./theme/js/bootstrap.min.js"></script>
<!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) -->
<script src="./theme/js/respond.min.js"></script>
</body>
</html>