Amanpreet Kapoor
Amanpreet Kapoor
  • 89
  • 132 151
Heaps (5c): Insertion
Heaps (5c): Insertion
มุมมอง: 1 898

วีดีโอ

Trees (4e): AVL Trees Insertion
มุมมอง 2Kหลายเดือนก่อน
Trees (4e): AVL Trees Insertion
Trees (3b): Tree Terminology
มุมมอง 1.5Kหลายเดือนก่อน
Trees (3b): Tree Terminology
Trees (4h): B and B+ Trees Insertion
มุมมอง 1.8Kหลายเดือนก่อน
Trees (4h): B and B Trees Insertion
Trees (3e): BST Delete
มุมมอง 1.9Kหลายเดือนก่อน
Trees (3e): BST Delete
Trees (4b): Performance of BST
มุมมอง 1.5Kหลายเดือนก่อน
Trees (4b): Performance of BST
Trees (4f): Fixing BST by Altering Structure
มุมมอง 1.6Kหลายเดือนก่อน
Trees (4f): Fixing BST by Altering Structure
Heaps (5e): Heap Sort
มุมมอง 1.8Kหลายเดือนก่อน
Heaps (5e): Heap Sort
Heaps (5a): Priority Queues
มุมมอง 3.5Kหลายเดือนก่อน
Heaps (5a): Priority Queues
Trees (4i): B+ Tree Question, Use Cases and Performance
มุมมอง 1.4Kหลายเดือนก่อน
Trees (4i): B Tree Question, Use Cases and Performance
Heaps (5b): Properties
มุมมอง 2Kหลายเดือนก่อน
Heaps (5b): Properties
Graphs (8a): Graphs Terminology
มุมมอง 2.5Kหลายเดือนก่อน
11:13 B is adjacent to A but A is not adjacent to B. Typo. 16:43 The cycle is ABEDA and not ABCDA. That is an error.
Trees (4d): AVL Trees and Properties
มุมมอง 2Kหลายเดือนก่อน
At 8:09 there is a typo in the slides, the tables last row should be "Right Left" instead of "Right"
Graphs (8c): Graphs Problems
มุมมอง 1.4Kหลายเดือนก่อน
Graphs (8c): Graphs Problems
Trees (3g): Tree Representation and Traversal Use Cases
มุมมอง 1.4Kหลายเดือนก่อน
Trees (3g): Tree Representation and Traversal Use Cases
Trees (4c): Rotations as Tools
มุมมอง 2.2Kหลายเดือนก่อน
Trees (4c): Rotations as Tools
Trees (4j): Splay Trees
มุมมอง 1.4Kหลายเดือนก่อน
Trees (4j): Splay Trees
Trees (3f): Traversals
มุมมอง 2.4Kหลายเดือนก่อน
Trees (3f): Traversals
Heaps (5d): Deletion
มุมมอง 2.1Kหลายเดือนก่อน
Heaps (5d): Deletion
Trees (3a): Trees and Use Cases
มุมมอง 2.2Kหลายเดือนก่อน
Trees (3a): Trees and Use Cases
Trees (3c): Types of Trees
มุมมอง 1.7Kหลายเดือนก่อน
Trees (3c): Types of Trees
Trees (4g): B Tree Properties
มุมมอง 1.8Kหลายเดือนก่อน
During explanation, at 10:24, "the leaf nodes have [l/2, l] keys", taking a ceil of l/2 is correct. After a lot of research, I have concluded that the property is not strictly enforced (see Wikipedia page for B Trees for conflicting implementation or interpretations). The figure on the right or the 2-3-4 tree does not follow this property. For the sake of the course, we will not follow this pro...
Graphs (8g): Adjacency List
มุมมอง 2.7Kหลายเดือนก่อน
Graphs (8g): Adjacency List
Graphs (8h): Graph Traversals
มุมมอง 2.4Kหลายเดือนก่อน
Graphs (8h): Graph Traversals
Graphs (8f): Adjacency Matrix
มุมมอง 1.8Kหลายเดือนก่อน
Graphs (8f): Adjacency Matrix
Graphs (8l): Dijkstras Algorithm Pseudocode
มุมมอง 1.7Kหลายเดือนก่อน
Graphs (8l): Dijkstras Algorithm Pseudocode
Graphs (8j): s-t Path
มุมมอง 2.4Kหลายเดือนก่อน
Graphs (8j): s-t Path
Sorting (6j): Quick Sort Code
มุมมอง 1.1Kหลายเดือนก่อน
Sorting (6j): Quick Sort Code
Sorting (6c): Bubble Sort
มุมมอง 1.3Kหลายเดือนก่อน
Sorting (6c): Bubble Sort
Sorting (6e): Shell Sort
มุมมอง 1.4Kหลายเดือนก่อน
Sorting (6e): Shell Sort

ความคิดเห็น

  • @kidyoshi007
    @kidyoshi007 5 หลายเดือนก่อน

    🔥🔥🔥

  • @alexbarreto3718
    @alexbarreto3718 ปีที่แล้ว

    Hi Professor Kapoor, why wouldn't the printing of the set be =.c 50, a 40, b 30? I'm a little bit confused about how the printing order for the unordered set works

  • @octavio.anino.1626
    @octavio.anino.1626 2 ปีที่แล้ว

    Line 18 in the adjacency list implementation is amazing. Creating a new key-value pair using just square bracket operators, and then initializing the value to an empty vector using just a pair of empty curly brackets. C++ is great.

  • @octavio.anino.1626
    @octavio.anino.1626 2 ปีที่แล้ว

    For those who may have been confused like I was at 6:45. From the definition of the operation, the Node required is passed to AddBefore(). The operation does not need to find the required Node. Then, as explained prior to 6:45, insertion into a doubly linked list takes constant time.

  • @amanpreetkapoor6490
    @amanpreetkapoor6490 3 ปีที่แล้ว

    If anyone needs to access the links, here they are: cplusplus.com/reference/map/map cplusplus.com/reference/unordered_map/unordered_map

  • @amanpreetkapoor6490
    @amanpreetkapoor6490 3 ปีที่แล้ว

    If anyone needs to access the links, here they are: cplusplus.com/reference/set/set/ cplusplus.com/reference/unordered_set/unordered_set/ onlinegdb.com/SyMCuHOlD

  • @OppositeOfChill
    @OppositeOfChill 4 ปีที่แล้ว

    It looks like the link in the video doesn't lead to anything: onlinegdb.com/BJGAP7151

    • @amanpreetkapoor15
      @amanpreetkapoor15 3 ปีที่แล้ว

      The link is this one: www.onlinegdb.com/BJGAP7I5I