Tag: Teaching Kids Programming
Teaching Kids Programming: Videos on Data Structures and Algorithms Proof of Pythagorean Theorem The big square’s area is and it is equal to 4 triangls + a small square. …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given function where x is non-negative, we can plot the graph as below: Compute the Square Root by using Binary …
Teaching Kids Programming: Videos on Data Structures and Algorithms Given a Linked List, remove the nodes with a given value. Remove a Node using Recursion If the head is …
Teaching Kids Programming: Videos on Data Structures and Algorithms Reverse a singly linked list. Example: Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL Follow up: A linked list can be reversed either iteratively …
Teaching Kids Programming: Videos on Data Structures and Algorithms Since is monotonously increasing, we can use the Binary Search Algorithm (Binary Search Algorithm to Find the Inverse of a …