Skip to content
Friday, May 16, 2025
Latest:
  • Understanding Quick Sort for coding interviews
  • Understanding Insertion Sort for coding interviews
  • Understanding Bubble Sort for coding interviews
  • Understanding selection sort for coding interviews
  • Generate binary numbers using a queue

    • HOME
    • C++
    • SYSTEM DESIGN
    • ENGINEERING MANAGEMENT
    • ABOUT
    A CODERS JOURNEY
    Quick Sort for Coding Interviews
    ALL
    November 3, 2019 Deb Haldar

    Understanding Quick Sort for coding interviews

    In the last three posts we looked at selection, bubble and insertion sort respectively. While it’s critical to know these basic sorting techniques, it’s unlikely you’d be asked to code one of these up for your next Microsoft/Google interview unless …

    Read More
    Insertion Sort
    ALL
    September 21, 2019 Deb Haldar

    Understanding Insertion Sort for coding interviews

    In the last post we looked at how to really understand Bubble Sort by solving it on paper, one step at a time. We’ll take the same approach for Insertion Sort.

    As with most fundamental sorting algorithms, the chances of …

    Read More
    Bubble Sort for coding interviews
    ALL
    September 18, 2019 Deb Haldar

    Understanding Bubble Sort for coding interviews

    In the last post we looked at how to really understand Selection Sort by solving it on paper, one step at a time. We’ll take the same approach for Bubble Sort.

    While bubble sort is not one of the algorithms …

    Read More
    Selection Sort
    ALL
    September 13, 2019 Deb Haldar

    Understanding selection sort for coding interviews

    This is the first post in a series where we look at various sorting algorithms you’ll need to know for your next coding interview.

    I struggled with understanding basic sorting algorithms when i first encountered them in college. I tried …

    Read More
    Generate binary numbers using a queue
    ALLCODE CRAFT
    May 11, 2019 Deb Haldar

    Generate binary numbers using a queue

    Problem

    Generate binary numbers from 1 to any given number, “n”, using a queue.

    Function Signature

    List<string> GenerateBinaryNumber(int n)

    Example Input and Output

    n = 1 => (1)

    n = 3 => ( 1, 10, 11)

    Problem Solving Strategy

    Assuming …

    Read More
    Send email using C#
    ALLCODE CRAFT
    April 29, 2019 Deb Haldar

    How to send email using C# and Outlook.com

    This is a note to myself. I recently had to write this code for the third time in my life in the last 11 years because I did not save it somewhere consumable. So putting it on my blog for …

    Read More

    Posts pagination

    • 1
    • 2
    • …
    • 7

    Popular Posts

    • 20 ABI (Application Binary Interface) breaking changes every C++ developer should know
      20 ABI (Application Binary Interface) breaking changes every C++ developer should know
    • Top 20 C++ multithreading mistakes and how to avoid them
      Top 20 C++ multithreading mistakes and how to avoid them
    • Top 20 C pointer mistakes and how to fix them
      Top 20 C pointer mistakes and how to fix them
    • 6 Tips to supercharge C++11 vector performance
      6 Tips to supercharge C++11 vector performance
    • Top 10 dumb mistakes to avoid with C++ 11 smart pointers
      Top 10 dumb mistakes to avoid with C++ 11 smart pointers
    • Top 10 C++ header file mistakes and how to fix them
      Top 10 C++ header file mistakes and how to fix them
    • System Design Interview Concepts – Database Sharding
      System Design Interview Concepts – Database Sharding
    • Understanding Quick Sort for coding interviews
      Understanding Quick Sort for coding interviews
    • The Worst Programming Interview Question I’ve Ever Seen !
      The Worst Programming Interview Question I’ve Ever Seen !
    • Top 15 C++ Exception handling mistakes and how to avoid them.
      Top 15 C++ Exception handling mistakes and how to avoid them.

    Archives

    • November 2019 (1)
    • September 2019 (3)
    • May 2019 (1)
    • April 2019 (3)
    • March 2019 (1)
    • December 2018 (2)
    • September 2018 (1)
    • August 2018 (2)
    • July 2018 (2)
    • May 2018 (1)
    • April 2018 (1)
    • October 2017 (1)
    • August 2017 (2)
    • January 2017 (1)
    • November 2016 (1)
    • October 2016 (2)
    • August 2016 (1)
    • June 2016 (2)
    • May 2016 (4)
    • April 2016 (2)
    • March 2016 (1)
    • February 2016 (3)
    • January 2016 (3)

    Recent posts

    • Understanding Quick Sort for coding interviews
    • Understanding Insertion Sort for coding interviews
    • Understanding Bubble Sort for coding interviews
    • Understanding selection sort for coding interviews
    • Generate binary numbers using a queue
      Copyright © 2025 A CODERS JOURNEY. All rights reserved.
      Theme: ColorMag by ThemeGrill. Powered by WordPress.
       

      Loading Comments...