This course is about the fundamental concepts of algorithmic problems focusing on recursion, backtracking, dynamic programming and divide and conquer approaches. As far as I am concerned, these techniques are very important nowadays, algorithms can be used (and have several applications) in several fields from software engineering to investment banking or R&D.
Recursion, Backtracking and Dynamic Programming in Java
Recursion, Backtracking and Dynamic Programming in Java is a 82-lesson 9 hours 46 minutes self-paced course by Udemy. This course is about the fundamental concepts of algorithmic problems focusing on recursion, backtracking, dynamic programming and divide and conquer approaches.
Course facts
- Lessons
- 82
- Duration
- 9 hours 46 minutes
- Level
- All levels
- Language
- English
- Updated
- Instructor
- Udemy
- Price
- Premium
Section 1 - RECURSION
what are recursion and recursive methods
stack memory and heap memory overview
what is stack overflow?
Fibonacci numbers
factorial function
tower of Hanoi problem
Section 2 - SEARCH ALGORITHMS
linear search approach
binary search algorithm
Section 3 - SELECTION ALGORITHMS
what are selection algorithms?
how to find the k-th order statistics in O(N) linear running time?
quickselect algorithm
median of medians algorithm
the secretary problem
Section 4 - BACKTRACKING
what is backtracking?
n-queens problem
Hamiltonian cycle problem
coloring problem
knight's tour problem
Sudoku game
Section 5 - DYNAMIC PROGRAMMING
what is dynamic programming?
knapsack problem
rod cutting problem
subset sum problem
Section 6 - OPTIMAL PACKING
what is optimal packing?
bin packing problem
Section 7 - DIVIDE AND CONQUER APPROACHES
what is the divide and conquer approach?
dynamic programming and divide and conquer method
how to achieve sorting in O(NlogN) with merge sort?
the closest pair of points problem
Section 8 - COMMON INTERVIEW QUESTIONS
top interview questions (Google, Facebook and Amazon)
In each section we will talk about the theoretical background for all of these algorithms then we are going to implement these problems together from scratch in Java.
Finally, YOU CAN LEARN ABOUT THE MOST COMMON INTERVIEW QUESTIONS (Google, MicroSoft, Amazon etc.)
Who teaches Recursion, Backtracking and Dynamic Programming in Java? Udemy
Udemy is the largest open marketplace for online courses on the internet. Founded in 2010 by Eren Bali, Oktay Caglar, and Gagan Biyani and headquartered in San Francisco, the company went public on the Nasdaq in 2021 under the ticker UDMY. The platform hosts well over two hundred thousand courses across software development, IT and cloud, data science, design, business, marketing, and creative skills, taught by tens of thousands of independent instructors. Roughly seventy million learners use it worldwide, and the corporate arm — Udemy Business — supplies a curated subset of that catalog to enterprise customers.
Because Udemy is a marketplace rather than a single editorial publisher, the catalog is uneven by design. The strongest material lives in the long-form, project-based courses authored by working engineers — full-stack JavaScript, React, Node.js, Python data science, AWS, Docker and Kubernetes, mobile development with Flutter and React Native, and cloud certification preparation. The CourseFlix listing under this source is the slice of that catalog that has been mirrored here for offline-friendly viewing, organized by topic and updated as new releases land. Pricing on Udemy itself swings dramatically with the site's near-permanent sales, which is why the platform is best treated as a deep reference catalog: pick instructors with strong reviews and a track record of updating their material rather than buying on the headline price alone.
What lessons are included in Recursion, Backtracking and Dynamic Programming in Java?
| # | Lesson Title | Duration | Access |
|---|---|---|---|
| 1 | Introduction Demo | 02:09 | |
| 2 | What are stack and heap memory? | 03:45 | |
| 3 | Stack memory and heap memory simulation | 06:15 | |
| 4 | Recursion introduction | 08:44 | |
| 5 | Adding numbers: iteration vs recursion | 05:05 | |
| 6 | Recursion and stack memory (stack overflow) | 10:10 | |
| 7 | Head recursion and tail recursion implementation | 06:39 | |
| 8 | Factorial function - head recursion | 06:07 | |
| 9 | Factorial problem - visualizing the stack | 04:15 | |
| 10 | Factorial function - tail recursion | 05:48 | |
| 11 | Fibonacci numbers - head recursion | 04:58 | |
| 12 | Towers of Hanoi problem introduction | 06:01 | |
| 13 | Tower of Hanoi problem implementation | 05:39 | |
| 14 | Towers of Hanoi - visualizing the stack | 07:09 | |
| 15 | Iteration and recursion revisited | 01:43 | |
| 16 | What is linear search? | 01:39 | |
| 17 | Linear search implementation | 03:17 | |
| 18 | What is binary (logarithmic) search? | 03:49 | |
| 19 | Binary search implementation | 08:54 | |
| 20 | Selection algorithms introduction | 06:44 | |
| 21 | Quickselect introduction - Hoare algorithm | 09:49 | |
| 22 | Quickselect visualization | 08:52 | |
| 23 | Quickselect implementation | 11:57 | |
| 24 | What the problem with pivots? | 05:50 | |
| 25 | Advanced selection - median of medians algorithm | 07:31 | |
| 26 | Combining algorithms - introselect algorithm | 01:23 | |
| 27 | Online selection - the secretary problem | 08:02 | |
| 28 | Backtracking introduction | 05:51 | |
| 29 | Brute-force search and backtracking | 04:03 | |
| 30 | N-queens problem introduction | 08:07 | |
| 31 | What is the search tree? | 03:10 | |
| 32 | N-queens problem implementation I | 09:22 | |
| 33 | N-queens problem implementation II | 06:17 | |
| 34 | N-queens problem and stack memory visualization | 06:22 | |
| 35 | Hamiltonian paths (and cycles) introduction | 08:03 | |
| 36 | Hamiltonian cycle illustration | 04:42 | |
| 37 | Hamiltonian cycle implementation I | 10:17 | |
| 38 | Hamiltonian cycle implementation II | 07:02 | |
| 39 | Coloring problem introduction | 08:49 | |
| 40 | Coloring problem visualization | 04:33 | |
| 41 | Coloring problem implementation I | 07:18 | |
| 42 | Coloring problem implementation II | 05:25 | |
| 43 | Knight's tour introduction | 03:55 | |
| 44 | Knight's tour implementation I | 10:33 | |
| 45 | Knight's tour implementation II | 04:49 | |
| 46 | Maze problem introduction | 04:59 | |
| 47 | Maze problem implementation I | 07:22 | |
| 48 | Maze problem implementation II | 06:53 | |
| 49 | Sudoku introduction | 05:52 | |
| 50 | Sudoku implementation I | 08:38 | |
| 51 | Sudoku implementation II | 03:28 | |
| 52 | What is the issue with NP-complete problems? | 05:05 | |
| 53 | Dynamic programming introduction | 08:24 | |
| 54 | Fibonacci numbers introduction | 03:31 | |
| 55 | Fibonacci numbers implementation | 08:36 | |
| 56 | Knapsack problem introduction | 18:08 | |
| 57 | Knapsack problem example | 12:59 | |
| 58 | Knapsack problem implementation I | 08:08 | |
| 59 | Knapsack problem implementation II | 04:27 | |
| 60 | Rod cutting problem introduction | 08:04 | |
| 61 | Rod cutting problem example | 11:07 | |
| 62 | Rod cutting problem implementation | 08:46 | |
| 63 | Subset sum problem introduction | 10:12 | |
| 64 | Subset sum problem example | 09:09 | |
| 65 | Subset sum problem implementation | 09:05 | |
| 66 | Bin packing problem introduction | 08:10 | |
| 67 | Bin packing problem implementation | 06:53 | |
| 68 | What are divide-and-conquer approaches? | 09:24 | |
| 69 | Binary search revisited | 01:46 | |
| 70 | Merge sort theory | 08:18 | |
| 71 | Merge sort implementation | 06:27 | |
| 72 | Closest pair of points problem introduction I | 15:21 | |
| 73 | Closes pair of points problem introduction II | 04:15 | |
| 74 | Closest pair of points implementation | 23:54 | |
| 75 | Palindrome problem solution | 08:01 | |
| 76 | Integer reversion solution | 07:01 | |
| 77 | Two eggs problem solution I | 08:02 | |
| 78 | Two eggs problem solution II | 11:40 | |
| 79 | Duplicates in an array problem solution | 07:57 | |
| 80 | Anagram problem solution | 03:52 | |
| 81 | Largest sum subarray problem solution | 10:49 | |
| 82 | What is Algorhyme? | 00:42 |
Get instant access to all 81 lessons in this course, plus thousands of other premium courses. One subscription, unlimited knowledge.
Learn more about subscriptionWhat courses are similar to Recursion, Backtracking and Dynamic Programming in Java?
-
Updated 2y agoProfessional Developer Resume
By: George Moller90% of recruiters have 5 seconds to screen your resume and decide whether you are a good fit for the position or not.5/5 -
Updated 3mo agoGrokking System Design Fundamentals
By: Design GurusMaster the basics of system design: from client-server architectures to databases. Perfect for beginners with no prior knowledge. -
Updated 2y agoData Structures & Algorithms !
By: UdemyLearn data structures and algorithms from scratch. Start with basic data structures and work your way up to intermediate. This course is for all those who want28h 40m5/5 -
Updated 1y agoThe Ultimate Design Patterns: Part 1
By: Mosh Hamedani (Code with Mosh)If you want to reach the higher levels of software engineering, you simply MUST master design patterns. It’s a no-brainer! Most employers are looking for senior4h 3m5/5 -
Updated 10mo agoFrontend System Design
By: Prashant Yadav (LearnersBucket)Become the Alpha frontend engineer by designing 30+ distinct web applications and all the fundamentals. Learn the advanced concepts, strategies, techniques, and5/5 -
Updated 5mo agoGrokking Graph Algorithms for Coding Interviews
By: Design GurusStudy graph algorithms to successfully pass interviews at leading IT companies. The course is suitable for all levels, from beginners to advanced. -
ClassicJava Master Class
By: Nelson Djalo (Amigoscode)Welcome to Amigoscode's most comprehensive Java course! It includes everything you need to gain a complete understanding of Java.24h 40m5/5 -
Updated 1y agoJava Puzzles to Eliminate Code Fear
By: UdemyThe motivation behind this course came from an article titled "Why Can't Programmers Program?" by Jeff Atwood. It talks about how poorly many candidates perform7h 33m
More courses by Udemy
-
Updated 3y agoComplete C# Unity Game Developer 3D
This is the long-awaited sequel to the Complete Unity Developer - one of the most popular e-learning courses on the internet!30h 34m -
Updated 3y agoNest.js Microservices: Build & Deploy a Scaleable Backend
Nest.js is an incredible backend framework that allows us to build scaleable Nodejs backends with very little complexity. A Microservice architecture is a popul5h 39m5/5 -
Updated 3y agoThe HTML & CSS Bootcamp 2023 Edition
Brand new HTML & CSS course, just released in February 2023 Check out the promo video to see the beautiful, responsive projects we build in this course!37h 18m5/5 -
Updated 3y agoMicroservices with Node JS and React
Event-Based Architecture? Covered! Server side rendering with React? Yep. Scalable, production-ready code? Its here!54h 13m5/5 -
FreeClassic100 Days of Code - The Complete Python Pro Bootcamp for 2023
Watch the 100 Days of Code Python Pro Bootcamp free: 100 daily projects covering Python basics, web scraping, data science, automation and GUI apps.58h 35m5/5 -
Updated 3y agoReact - The Complete Guide
React: The Complete Guide by Maximilian Schwarzmüller — original 2022 edition covering React hooks, Redux, Context API, Next.js basics.47h 42m5/5