17 OCT 2024 - Welcome Back to TorrentFunk! Get your pirate hat back out. Streaming is dying and torrents are the new trend. Account Registration works again and so do Torrent Uploads. We invite you all to start uploading torrents again!
TORRENT DETAILS
Coding With Data Structures From Basics
TORRENT SUMMARY
Status:
All the torrents in this section have been verified by our verification system
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. Different types of data structures are suited to different kinds of applications, and some are highly specialized to specific task. Data structures provide a means to manage large amounts of data efficiently. Efficient data structures are key to designing efficient algorithms. Data structures can be used to organize the storage and retrieval of information stored in both main memory and secondary memory.
Data structures serve as the basis for ADT. The ADT (Abstract Data Types) defines the logical form of the data type. Data structures are based on the ability of a computer to fetch and store data at any place in its memory, specified by a pointer.
The array and record data structures are based on computing the addresses of data items with arithmetic operations. The linked data structures are based on storing addresses of data items within the structure itself. The implementation of a data structure usually requires writing a set of procedures that create and manipulate instances of that structure.
A linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Each element points to the next. It is a data structure consisting of a collection of nodes which together represent a sequence. Each node contains: data, and a link to the next node in the sequence. This structure allows for efficient insertion or removal of elements from any position in the sequence during iteration.
Following topics are covered as part of hands-on / Live coding videos :
Linked Lists (LL) Implementation / Coding:
Concept of link Creating a Linked List (LL) Appending a node to LL Display of LL Length of LL (count) Reversing of LL Sorting Adding node at Start of LL Inserting node in between of LL Deleting a node Creating a Double LL Appending a node to Double LL Display of Double LL Length of Double LL (count) Reversing of Double LL Inserting a node in between a Double LL Rotate Double LL Count Pairs with criteria for a Double LL Questions Circular LL overview (access pointers) Creating a Circular LL Adding node at Start Circular LL (approach 1) Traversal / Display Circular LL (approach 1) Inserting node in between a Circular LL (approach 1) Deleting a node Adding node at End Circular LL (approach 2) Traversal / Display Circular LL (approach 2) Circular LL – Queue (Adding Node) Circular LL – Queue (Removing Node) Questions
Stacks (Implementation / Coding):
Stack overview Stack with Array Expressions Evaluation of Postfix expression Infix to Post fix Evaluation of Prefix overview. infix to prefix overview Application: Finding next big element Stack using Linked List Reversing Stack with Linked List Questions
Queues (Implementation / Coding) :
Queue Overview Queue using Array Priority Queue with Array Queue using Linked List Priority Queue using Double Linked List Questions
Recursion
Recursion Overview, Phases, Types Recursive Functions Linked List operations using Recursion Questions
Trees
Binary Trees Tree Traversals Inorder preorder postorder Binary Search Trees (BST) BST – Insertion BST – Insertion & Traversals Traversals Explained BST – Search Search operations BST Deletion Deletion cases Binary Tree to BST conversion Identify a Tree to be BST Identify zero, one child nodes of BST Questions
Topics of Data Structures and interaction Who this course is for:
fresh students, C programmers
Requirements
C language
Last Updated 7/2021
VISITOR COMMENTS (0 )
FILE LIST
Filename
Size
.pad/0
1.3 MB
.pad/1
713.6 KB
.pad/10
1007.6 KB
.pad/11
196.1 KB
.pad/12
1.7 MB
.pad/13
956.8 KB
.pad/14
978.9 KB
.pad/15
1.5 MB
.pad/16
1.6 MB
.pad/17
1.8 MB
.pad/18
225.2 KB
.pad/19
648.9 KB
.pad/2
1 MB
.pad/20
821.5 KB
.pad/21
1.7 MB
.pad/22
409.4 KB
.pad/23
886.4 KB
.pad/24
1.5 MB
.pad/25
650.2 KB
.pad/26
1.4 MB
.pad/27
570.7 KB
.pad/28
749.2 KB
.pad/29
1.9 MB
.pad/3
192.3 KB
.pad/30
1.1 MB
.pad/31
2 MB
.pad/32
801.1 KB
.pad/33
1.8 MB
.pad/34
1.9 MB
.pad/35
938.1 KB
.pad/36
681.4 KB
.pad/37
1.1 MB
.pad/38
1.5 MB
.pad/39
913.4 KB
.pad/4
1.3 MB
.pad/40
918.9 KB
.pad/41
181.6 KB
.pad/42
1.7 MB
.pad/43
1.9 MB
.pad/44
237.3 KB
.pad/45
2 MB
.pad/46
461.2 KB
.pad/47
989 KB
.pad/5
602.8 KB
.pad/6
1.1 MB
.pad/7
1.4 MB
.pad/8
1.6 MB
.pad/9
481.2 KB
TutsNode.net.txt
63 B
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/10 - Reversing Linked List.mp4
156.2 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/11 - Sorting of Linked List.mp4
115 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/12 - Add New node at Start.mp4
168.9 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/13 - Insert New node after a position.mp4
210.2 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/14 - Delete a node from the list.mp4
178.6 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/15 - Create Double Linked List Double LL.mp4
240.4 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/17 - Reversing a Double LL.mp4
175.3 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/18 - Insert a New node after a position in Double LL.mp4
224.3 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/19 - Double LL Rotation 1.mp4
201.8 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/21 - Double LL Counting Pairs with a criteria.mp4
201.2 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/25 - Create LL Add at Begin via front.mp4
200.3 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/27 - Insert node after an Element via front.mp4
142.9 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/28 - Delete node with key via front.mp4
223.1 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/29 - Add at End via rear Display.mp4
181.4 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/30 - Create Add to queue Circular LL Display.mp4
218.5 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/31 - Remove from queue Circular LL Display.mp4
231.8 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/4 - Concept of Link.mp4
235.5 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/6 - Creating Linked List 1.mp4
115.5 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/7 - Creating Linked List 2.mp4
157.2 MB
[TutsNode.net] - Coding with Data Structures from Basics/1 - Linked List Implementation Coding/8 - Display of Linked List Count.mp4
124.3 MB
[TutsNode.net] - Coding with Data Structures from Basics/2 - Stacks Implementation Coding/34 - Stack using array.mp4
272.7 MB
[TutsNode.net] - Coding with Data Structures from Basics/2 - Stacks Implementation Coding/37 - Evaluation of Postfix expression Implementation.mp4
221 MB
[TutsNode.net] - Coding with Data Structures from Basics/2 - Stacks Implementation Coding/38 - Infix to Postfix Overview.mp4
124.1 MB
[TutsNode.net] - Coding with Data Structures from Basics/2 - Stacks Implementation Coding/39 - Infix to Postfix Implementation.mp4
327 MB
[TutsNode.net] - Coding with Data Structures from Basics/2 - Stacks Implementation Coding/41 - Application Finding Next Big Element.mp4
240.6 MB
[TutsNode.net] - Coding with Data Structures from Basics/2 - Stacks Implementation Coding/42 - Stack using Linked List LL.mp4
201.4 MB
[TutsNode.net] - Coding with Data Structures from Basics/2 - Stacks Implementation Coding/43 - Reversing Stack using Linked List.mp4
183.1 MB
[TutsNode.net] - Coding with Data Structures from Basics/3 - Queues Implementation Coding/45 - Queues Overview.mp4
123.8 MB
[TutsNode.net] - Coding with Data Structures from Basics/3 - Queues Implementation Coding/46 - Queue using Array.mp4
271.4 MB
[TutsNode.net] - Coding with Data Structures from Basics/3 - Queues Implementation Coding/47 - Priority Queue 1.mp4
235 MB
[TutsNode.net] - Coding with Data Structures from Basics/3 - Queues Implementation Coding/49 - Queue using Linked List.mp4
187.6 MB
[TutsNode.net] - Coding with Data Structures from Basics/3 - Queues Implementation Coding/50 - Priority Queue using Double Linked List.mp4
338.7 MB
[TutsNode.net] - Coding with Data Structures from Basics/4 - Recursion Linked List Ops with Recursion/52 - Recursion Overview.mp4
137.1 MB
[TutsNode.net] - Coding with Data Structures from Basics/4 - Recursion Linked List Ops with Recursion/53 - Recursive Functions Phases.mp4
246.9 MB
[TutsNode.net] - Coding with Data Structures from Basics/4 - Recursion Linked List Ops with Recursion/54 - LL Operations using Recursion 1.mp4
182.5 MB
[TutsNode.net] - Coding with Data Structures from Basics/4 - Recursion Linked List Ops with Recursion/55 - LL Operations using Recursion 2.mp4
147.3 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/61 - Binary Tree Traversals 3.mp4
129.1 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/64 - BST Insert Non Recursive.mp4
120 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/66 - BST Traversal Explanation.mp4
112.1 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/67 - BST Insert with Traversals 1.mp4
125.8 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/72 - BST Deletion Overview.mp4
150.1 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/73 - BST Delete 1.mp4
142.5 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/75 - Binary Tree to BST Conversion.mp4
333.3 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/76 - Identify Tree to be BST.mp4
214.4 MB
[TutsNode.net] - Coding with Data Structures from Basics/5 - Trees Implementation Coding/77 - Identify Zero One child Nodes of BST.mp4
277.8 MB
[TutsNode.net] - Coding with Data Structures from Basics/6 - Sorting/81 - Insertion Sort 1.mp4
158 MB
[TutsNode.net] - Coding with Data Structures from Basics/6 - Sorting/83 - Quick Sort Overview.mp4
177.4 MB
[TutsNode.net] - Coding with Data Structures from Basics/6 - Sorting/84 - Quick Sort Implementation.mp4
149.1 MB
[TutsNode.net] - Coding with Data Structures from Basics/6 - Sorting/85 - Quick Sort Analysis MergeSort Discussion.mp4