Sign up to save your podcastsEmail addressPasswordRegisterOrContinue with GoogleAlready have an account? Log in here.
Programming is a podcast that aims to make us better software engineers! With each episode, you'll learn about a computer science concept in a brief and accessible way.... more
FAQs about Programming:How many episodes does Programming have?The podcast currently has 23 episodes available.
March 24, 2020Episode 13 - Binary HeapsToday we're going to discuss the binary heap data structure. In this episode, you'll learn where to use heaps in practice, how they can come handy to you during a coding interview, and how to implement them!Along the way, we'll cover heap sort, priority queues, load balancing, and more!...more13minPlay
March 17, 2020Episode 12 - COVID-19. Epidemic modeling with SIR.Instead of digging into algorithms and data structures, today, you'll learn about epidemic modeling. In 9 minutes in this episode, you'll get a mathematical intuition on the spread of COVID-19 and the essential variables we can control, which can help us fight the virus....more10minPlay
March 10, 2020Episode 11 - Coupling and CohesionToday you'll learn how keeping your abstractions more cohesive and less coupled can improve the quality and maintainability of your software....more12minPlay
March 03, 2020Episode 10 - Topological SortThe chances are that the information from this episode will come in handy to you during a coding interview and likely in real life!In this episode, you'll learn the topological sort algorithm. Along the way, you'll understand what's a dependency graph and how topological sort operates on this data structure. We'll also discuss a few real-life examples where I had to implement topological sort myself!...more14minPlay
February 26, 2020Episode 9 - Sorting. Counting Sort.Have you ever been frustrated during interviews thinking that your interviewer expects you to have memorized a bunch of sorting algorithms you'd never need in real life?In this episode of the podcast learn how to approach such situations. In performance critical systems you may have to implement an efficient sorting yourself. Learn how to beat the built-in algorithm in a few lines of code!...more14minPlay
February 18, 2020Episode 8 - Decorator PatternToday you'll learn how at runtime, you can enhance the behavior or existing objects using the decorator pattern.In this episode, we'll discuss the advantages of decorators over inheritance and look at two examples from real-life - implementing a network communication protocol and enriching user interface components....more14minPlay
February 11, 2020Episode 7 - TriesIn the episode today, we'll talk about the trie data structure. You'll learn what tries are, how you can use them in practice, and how to implement them in your favorite programming language!...more12minPlay
February 04, 2020Episode 6 - Graphs and Graph TraversalIn this episode, we'll discuss graphs. You'll learn how this data structure looks like and what are its applications. Later on, we'll talk about algorithms for traversing graphs. You'll understand how breadth-first search and depth-first search work and when you should use one instead of the other. Topics we'll also touch on are chromatic graphs and finding the shortest path....more22minPlay
January 26, 2020Episode 5 - Arrays and Linked ListsIn this episode, we'll discuss two fundamental data structures in computer science - arrays and linked lists. Their understanding is essential not only in your day to day job but also for performing well on your next coding interview.We'll discuss implementation details for both data structures, and we'll talk about when it's better to choose one instead of the other. Along the way, we'll touch on memory hierarchy, caching locality, and different interview problems....more20minPlay
January 21, 2020Episode 4 - QuickselectToday we're going to talk about quickselect. This algorithm helps us quickly find the n-th smallest element in unsorted arrays. It'll not only help you improve the performance of your applications, but it's also a very common white-board interview problem....more11minPlay
FAQs about Programming:How many episodes does Programming have?The podcast currently has 23 episodes available.