Learn Simpli

Free Online Tutorial For Programmers, Contains a Solution For Question in Programming. Quizzes and Practice / Company / Test interview Questions.

Data structure - tree
Data structures and algorithms

Tree

[su_youtube url="https://youtu.be/2IhBtV2kYf8" title="Tree Data structure"] [su_youtube url="https://youtu.be/1vv2hHSxQMg" title="Properties of Tree Data structure"] [su_youtube url="https://youtu.be/k7fNwaBSTM0" title="Types of Tree Data structure"]   Tree What is a tree? A tree is a data structure that represents hierarchical data The nodes in the tree have a 1:N parent-child relationship Every tree has a root…

Data structure - queues
Data structures and algorithms

Queues

[su_youtube url="https://youtu.be/JagMrQMvWBk" title="Queue"] [su_youtube url="https://youtu.be/9aqkEoJO65o" title="Types of Queue"] Queues What are queues? The queues are First in First out (FIFO) data structures Its the opposite of stacks The printer is the best example of a queue Doubly ended queues Its a data structure which is both First in First out…

Arrays
Programming

Array

[su_youtube url="https://youtu.be/dtyH9XW3VDI" title="Arrays"]What is an array? An array is a collection of data items These items are similar types An array can also be called a list Properties an array An array can contain a group of elements of a similar type Array elements are stored in contiguous memory blocks…