Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ce90adb

Browse filesBrowse files
authored
Merge pull request dubesar#40 from nchand/master
Updated Readme with Stack and Queue
2 parents 961b4b5 + 8fbcb5a commit ce90adb
Copy full SHA for ce90adb

File tree

Expand file treeCollapse file tree

1 file changed

+13
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+13
-0
lines changed
Open diff view settings
Collapse file

‎README.md‎

Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,16 @@ Your best tools as a programmer: control flow. Looping is the quintenscence of y
4646
>In computer science, a segment tree also known as a statistic tree is a tree data structure used for storing information about intervals, or segments. It allows querying which of the stored segments contain a given point. It is, in principle, a static structure; that is, it's a structure that cannot be modified once it's built. A similar data structure is the interval tree.
4747
4848
[_Wikipedia_](https://en.wikipedia.org/wiki/Segment_tree)
49+
#### Stack
50+
> In computer science, a stack is an abstract data type that serves as a collection of elements, with two principal operations:
51+
>* **push**, which adds an element to the collection, and
52+
>* **pop**, which removes the most recently added element that was not yet removed.
53+
54+
[_Wikipedia_](https://en.wikipedia.org/wiki/Stack_(abstract_data_type))
55+
#### Queue
56+
>In computer science, a queue is a collection in which the entities in the collection are kept in order and the principal (or only) operations on the collection are the addition of entities to the rear terminal position, known as enqueue, and removal of entities from the front terminal position, known as dequeue. This makes the queue a First-In-First-Out (FIFO) data structure. In a FIFO data structure, the first element added to the queue will be the first one to be removed.
57+
58+
[_Wikipedia_](https://en.wikipedia.org/wiki/Queue_(abstract_data_type))
59+
60+
61+

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.