Tiling problems [1/2] | Dynamic Programming
28819 People Read – 721 People Liked – You Can Also Like
An introduction on how to solve tiling problems using dynamic programming
Next video:
Project Euler practice problems:
https://projecteuler.net/problem=114
https://projecteuler.net/problem=115
https://projecteuler.net/problem=116
https://projecteuler.net/problem=117
Algorithms code repository:
https://github.com/williamfiset/algorithms
Video slides:
https://github.com/williamfiset/algorithms/tree/master/slides
Website:
http://www.williamfiset.com
Audio intro/outro composed by Richard Saney ([email protected])
0:00 Intro
1:23 Top-down approach
3:47 Recursion tree
7:06 Recursive approach code
7:40 Repeating subtrees
8:39 Recursion tree with caching
11:07 Recursive implementation with caching
12:37 Bottom-up approach
15:08 Bottom-up (iterative) implementation
15:50 Related tiling problems