Posts

Showing posts with the label coding

What is the BEST way to Practice "Cracking the CODING Interview Problems?

  Original Author: Harsh Goel (CEO,    InterviewCamp.io - Online Bootcamp for Tech Interviews)                            No of Words: 253                         No of Backlinks: 2   Here is a sequence I recommend: (Before starting CTCI) Master important data structures Learn at least the following for each data structure: Implementation, Insertion, Deletion, Lookup. Get a book in your language of choice, or rely on online articles. Here is a list of data structures to master: Arrays and Lists 2D Arrays Strings Linked List Stack Queue Hash Table & Hash Set Heap Graphs Binary Tree Binary Search Tree Trie Master a few classic algorithms : You should know how to implement them in < 10 minutes if you practice them a few times. Binary Search Breadth-First Search Depth First Search Merge Sort ...