Skip to main content

Data Structures - Full Course Using C and C++


Data Structures - Full Course Using C and C++

Learn about data structures in this comprehensive course. We will be implementing these data structures in C or C++. You should have a good understanding of pointers in C. If you need to learn about pointers, watch this course: https://www.youtube.com/watch?v=zuegQmMdy8M 

Data Structures - Full Course Course Contents:

  1. ⌨️ (0:00:00) Introduction to data structures
  2. ⌨️ (0:06:33) Data Structures: List as abstract data type
  3. ⌨️ (0:19:40) Introduction to linked list
  4. ⌨️ (0:36:50) Arrays vs Linked Lists
  5. ⌨️ (0:49:05) Linked List - Implementation in C/C++
  6. ⌨️ (1:03:02) Linked List in C/C++ - Inserting a node at beginning
  7. ⌨️ (1:15:50) Linked List in C/C++ - Insert a node at nth position
  8. ⌨️ (1:31:04) Linked List in C/C++ - Delete a node at nth position
  9. ⌨️ (1:43:32) Reverse a linked list - Iterative method
  10. ⌨️ (1:57:21) Print elements of a linked list in forward and reverse order using recursion
  11. ⌨️ (2:11:43) Reverse a linked list using recursion
  12. ⌨️ (2:20:38) Introduction to Doubly Linked List
  13. ⌨️ (2:27:50) Doubly Linked List - Implementation in C/C++
  14. ⌨️ (2:43:09) Introduction to stack
  15. ⌨️ (2:51:34) Array implementation of stacks
  16. ⌨️ (3:04:42) Linked List implementation of stacks
  17. ⌨️ (3:15:39) Reverse a string or linked list using stack.
  18. ⌨️ (3:32:03) Check for balanced parentheses using stack
  19. ⌨️ (3:46:14) Infix, Prefix and Postfix
  20. ⌨️ (3:59:14) Evaluation of Prefix and Postfix expressions using stack
  21. ⌨️ (4:14:00) Infix to Postfix using stack
  22. ⌨️ (4:32:17) Introduction to Queues
  23. ⌨️ (4:41:35) Array implementation of Queue
  24. ⌨️ (4:56:33) Linked List implementation of Queue
  25. ⌨️ (5:10:48) Introduction to Trees
  26. ⌨️ (5:26:37) Binary Tree
  27. ⌨️ (5:42:51) Binary Search Tree
  28. ⌨️ (6:02:17) Binary search tree - Implementation in C/C++
  29. ⌨️ (6:20:52) BST implementation - memory allocation in stack and heap
  30. ⌨️ (6:33:55) Find min and max element in a binary search tree
  31. ⌨️ (6:39:41) Find height of a binary tree
  32. ⌨️ (6:46:50) Binary tree traversal - breadth-first and depth-first strategies
  33. ⌨️ (6:58:43) Binary tree: Level Order Traversal
  34. ⌨️ (7:10:05) Binary tree traversal: Preorder, Inorder, Postorder
  35. ⌨️ (7:24:33) Check if a binary tree is binary search tree or not
  36. ⌨️ (7:41:01) Delete a node from Binary Search Tree
  37. ⌨️ (7:59:27) Inorder Successor in a binary search tree
  38. ⌨️ (8:17:23) Introduction to graphs
  39. ⌨️ (8:34:05) Properties of Graphs
  40. ⌨️ (8:49:19) Graph Representation part 01 - Edge List
  41. ⌨️ (9:03:03) Graph Representation part 02 - Adjacency Matrix
  42. ⌨️ (9:17:46) Graph Representation part 03 - Adjacency List

Data Structures - Full Course Using C and C++


Click Here to watch on Youtube: Data Structures - Full Course Using C and C++


✏️ Course developed by Harsha and Animesh from MyCodeSchool.

  • 🔗 Read all about their amazing story here: https://www.freecodecamp.org/news/mycodeschool-youtube-channel-history/ 
  • 🔗 Check out the MyCodeSchool channel: https://www.youtube.com/user/mycodeschool 
  • 🔗 Check out the MyCodeSchool website: http://mycodeschool.com/ 

 Learn to code for free and get a developer job visit this blog for all the free courses from several channels and authors like Udemy, Youtube, Plurasight, Linkedin, Coursera and torrent.

This video is first published on youtube via freecodecamp. If Video does not appear here, you can watch this on Youtube always.

Data Structures - Full Course Free Download

Udemy Data Structures - Full Course Using C and C++ courses free download, Plurasight Data Structures - Full Course Using C and C++ courses free download, Linda Data Structures - Full Course Using C and C++ courses free download, Coursera Data Structures - Full Course Using C and C++ course download free, Brad Hussey udemy course free, free programming full course download, full course with project files, Download full project free, College major project download, CS major project idea, EC major project idea, clone projects download free

Comments

Popular posts from this blog

Fake CVR Generator Denmark

What Is Danish CVR The Central Business Register (CVR) is the central register of the state with information on all Danish companies. Since 1999, the Central Business Register has been the authoritative register for current and historical basic data on all registered companies in Denmark. Data comes from the companies' own registrations on Virk Report. There is also information on associations and public authorities in the CVR. As of 2018, CVR also contains information on Greenlandic companies, associations and authorities. In CVR at Virk you can do single lookups, filtered searches, create extracts and subscriptions, and retrieve a wide range of company documents and transcripts. Generate Danish CVR For Test (Fake) Click the button below to generate the valid CVR number for Denmark. You can click multiple times to generate several numbers. These numbers can be used to Test your sofware application that uses CVR, or Testing CVR APIs that Danish Govt provide. Generate

How To Iterate Dictionary Object

Dictionary is a object that can store values in Key-Value pair. its just like a list, the only difference is: List can be iterate using index(0-n) but not the Dictionary . Generally when we try to iterate the dictionary we get below error: " Collection was modified; enumeration operation may not execute. " So How to parse a dictionary and modify its values?? To iterate dictionary we must loop through it's keys or key - value pair. Using keys

How To Append Data to HTML5 localStorage or sessionStorage?

The localStorage property allows you to access a local Storage object. localStorage is similar to sessionStorage. The only difference is that, while data stored in localStorage has no expiration time untill unless user deletes his cache, data stored in sessionStorage gets cleared when the originating window or tab get closed. These are new HTML5 objects and provide these methods to deal with it: The following snippet accesses the current domain's local Storage object and adds a data item to it using Storage.setItem() . localStorage.setItem('myFav', 'Taylor Swift'); or you can use the keyname directly as : localStorage.myFav = 'Taylor Swift'; To grab the value set in localStorage or sessionStorage, we can use localStorage.getItem("myFav"); or localStorage.myFav There's no append function for localStorage or sessionStorage objects. It's not hard to write one though.The simplest solution goes here: But we can kee