3
Your Cart
Frequently bought together:
Original price was: $49.99.Current price is: $19.99.
Original price was: $49.99.Current price is: $19.99.
Original price was: $39.99.Current price is: $19.99.
Original price was: $79.99.Current price is: $24.99.
Original price was: $69.99.Current price is: $19.99.
Original price was: $39.99.Current price is: $19.99.
Total: $204.90

Coding Interview Questions is a book that presents interview questions in simple and straightforward manner with a clear-cut explanation. This book will provide an introduction to the basics. It comes handy as an interview and exam guide for computer scientists.

Topics Covered:

  • Programming Basics
  • Introduction
  • Recursion and Backtracking
  • Linked Lists
  • Stacks
  • Queues
  • Trees
  • Priority Queue and Heaps
  • Graph Algorithms
  • Sorting
  • Searching
  • Selection Algorithms [Medians]
  • Symbol Tables
  • Hashing
  • String Algorithms
  • Algorithms Design Techniques
  • Greedy Algorithms
  • Divide and Conquer Algorithms
  • Dynamic Programming
  • Complexity Classes
  • Design Interview Questions
  • Operating System Concepts
  • Computer Networking Basics
  • Database Concepts
  • Brain Teasers
  • NonTechnical Help
  • Miscellaneous Concepts

9 reviews for Coding Interview Questions

  1. Maleko
    April 3, 2017
    great book to beat those coding interviews
    If you're looking for 99.9% of the questions interviewers will ask in a typical coding interview, this book covers most of the good ones. I really li...More
    If you're looking for 99.9% of the questions interviewers will ask in a typical coding interview, this book covers most of the good ones. I really like the format of the book, it's a large book and it's formatted like those old Schaum's help books, with mostly C++, but some perl i seen, and some java questions as well. The author has written books on all 3, and the questions and answers are clearly written and easy to understand. Also the price is right. Take a look at the table of contents, it was enough to convince me to take a chance with the book and it delves into man subjects, OO, memory, pattterns, data structures, sorting, searching, etc. Keeping this on the bookshelf as it's a good reference as well.
    Helpful? 0 0
    Ice Cube
    November 5, 2015
    Fantastic interview prep material
    I would highly recommend this book for prepping for tech interviews. The author styles the chapters similarly to CTCI's (Cracking the coding interview...More
    I would highly recommend this book for prepping for tech interviews. The author styles the chapters similarly to CTCI's (Cracking the coding interview) by introducing a bit of the theory of overview of the topic before diving into the questions. There are typos and grammar mistakes everywhere, but nothing that would present any ambiguity or confusion about the important stuff. The presentations of solutions, the meat of this book, are left intact. The author doesn't just copy paste question-answers from across the web either; often times for a harder problem, there's a progression of solutions from brute-force to the most clever one. Overall, this book has personally helped me tremendously.
    Helpful? 0 0
    WDP
    June 7, 2015
    Great book!
    Excellent book! It's full of very useful and practical information.
    Helpful? 0 0
    Raj Nakkiran
    February 6, 2014
    This is a very good book.
    This is a big book with lots of tutorial and examples. There is a very consistent format and style, with very predictable progression. For a self pu...More
    This is a big book with lots of tutorial and examples. There is a very consistent format and style, with very predictable progression. For a self published and self edited work, this is a good book. At times, author's English, though correct is not quite American. The technical notation is lucid. The solutions are in pseudo code and easy to understand. Love it.
    Helpful? 0 0
    Ram
    January 21, 2014
    Best book to start preparing
    This author covers all the topics needed to learn data structures.Hats off to him. Taking the same questions and reducing time complexity using differ...More
    This author covers all the topics needed to learn data structures.Hats off to him. Taking the same questions and reducing time complexity using different methods was very very impressive...You learn what DS to use to reduce the complexity... Totally love the book..would recommend it for any one without a second thought..
    Helpful? 0 0
    dheemanth
    January 7, 2014
    Good Coverage of Coding Interview questions
    This Book cover All the aspects of Algorithms and Data structures.It covers lot of questions ,and would definitely be useful for Interview preparation...More
    This Book cover All the aspects of Algorithms and Data structures.It covers lot of questions ,and would definitely be useful for Interview preparation.The Author has done a great job.I would definitely recommend this book .
    Helpful? 0 0
    WindowShopper
    January 1, 2014
    Great for interviews ...
    This book is very good. Has solutions ranging from easy to difficult. It also explains concepts very well. Of course, it is not a regular text book. S...More
    This book is very good. Has solutions ranging from easy to difficult. It also explains concepts very well. Of course, it is not a regular text book. So if you are new to the data structures, this isn't for you. If you have basic idea of data structures, this gives a good refresher and provides lots of questions so that you can improve your skills before the interview. Definitely a book to read to prepare for technical interviews
    Helpful? 0 0
    vamshi
    November 3, 2012
    excellent book for interview preparation
    This book is completely different than the traditional book. This book is more problem analysis oriented and provides different approaches on how the ...More
    This book is completely different than the traditional book. This book is more problem analysis oriented and provides different approaches on how the problem can be solved. Each problem is dealt with algorithm analysis and the techniques which can be used.Especially topics on Graphs/Trees/Strings and dynamic programming are excellent and covers many problems which you find in other text books. This is the way the interviewers will be looking and this book helps very much in cracking the interview of any top notch companies.This book helps in building the skills to solve any kind of algorithm problem/data structure puzzles.

    Advantages when compared with other books
    Complete program are available when compared with other books
    Wide variety of problems and optimized algorithms on how to solve them with best complexity
    covers design patterns also
    Helpful? 0 0
    Pralay
    July 10, 2012
    Awesome book, by all standards!
    I must confess that his book is one of the most awesome ones that anyone who is interested in data structures, algorithms, meta-heuristics, could come...More
    I must confess that his book is one of the most awesome ones that anyone who is interested in data structures, algorithms, meta-heuristics, could come across. The book is good for someone looking out on an intermediate to advanced level stuff on aforesaid subject, and its has ample stuff for any newbie enthusiast too. While this book is an excellent one from the interview point of view, it would serve equally well to those who work, and those who love tackling teasers in their past time.

    The subject is dealt in great detail and problem solving is the primary focus, which I truly loved. It saves you a lot of time to have all kinds of questions aggregated at one place of varying difficulty, rather than having to look for them on internet or elsewhere. The best part about the book is the organization and approach to problems. It is not merely a question and answer book, it instigates you to think about the problem, come up with something and the compare it against what is provided as a solution. The language is lucid and easy to understand and the typical approach towards any problem is to come up with a solution anyhow (say O(n^2)) and then going on improving the complexity to O(NlogN) and then finally to an O(N). All the examples are annotated with comments and their space/time complexities.The approach is more of a critical-thinking one, the book helps you build an aptitude towards attacking a problem. While most books give you only the best algorithm towards a problem (and you never get to learn about the bad ones, which is necessary too), this book slowly builds up from just a possible solution to the best possible one. For those who think Levitin, CLRS, Cracking the coding is do-able, try cracking the whole of this!!!!
    Helpful? 0 0
Add a review

Your email address will not be published. Required fields are marked *

X

New item(s) have been added to your cart.

Frequently bought with The Bible of Competitive Programming & Coding Interviews


C Programming For Beginners - Master the C Language Original price was: $199.99.Current price is: $94.99.
Dynamic Programming Algorithms Master Course Original price was: $249.99.Current price is: $59.97.
Hi Guys, Welcome to my UPDATED ChatGPT Course: Generative AI, Prompt Engineering, Google Gemini, Adobe Firefly. In my course you will learn everything about different AI Tools. I have created video lessons on every feature of these AI tools. You will get to see the real practical implementation of how to use every feature of this tools. This is the most detailed course on AI Tools you will ever find on the internet. I have created different sections based on different AI tools and in each section, I have gone in-depth into explaining the concept of each tool and how to practically implement it. This course will give you a 100% understanding of AI Tools and after going through this course you will be capable of applying these concepts in building your own online business or for your clients. At such a low price, you're going to get 109 detailed video lessons. A complete access to our student discussion forum, and the ability to ask me any questions you may have as you progress through the course. On top of all that, you get lifetime access and a 30 day, 100% money back guarantee! Topics you will learn in this course: - Welcome To ChatGPT Masters - You're Going to Learn How to Use AI! - ChatGPT Sneak Peek - See the Power of AI for Text Generation - Midjourney Sneak Peek - See the Power of AI for Art Generation - 15 Minute ChatGPT Crash Course with ChatGPT 40 Update & Features - Prompt Engineering 101 - How to Get Better Responses from ChatGPT - UPDATE: Share ChatGPT Conversations with a Link - Google Gemini Crash Course & Comparison to ChatGPT - Better Than Google Research with ChatGPT - Find Keywords & Content Ideas with ChatGPT - Create Article, Video, Podcast Outlines with ChatGPT - Write an Entire Article with ChatGPT - Generate Catchy Titles & Headlines with ChatGPT - Come Up with Great Social Media Post Ideas with ChatGPT - Write Social Media Post Copy with ChatGPT (Instagram, Facebook, etc.) - Create Engaging Polls & Quizes with ChatGPT - Create Fun Facts, Inspirational Quotes and Jokes on any Topic with ChatGPT - Welcome to ChatGPT Marketing - Target Audience: How a well-defined target audience can help you sell more - Target Audience: ChatGPT for audience research and analysis - Content Calendar ChatGPT: How to create a complete Content Calendar - SEO ChatGPT: Optimized Keywords and Blog Titles - SEO ChatGPT: Writing an optimized Blog Post in seconds - Email Marketing ChatGPT: Overview of email marketing - Email Marketing ChatGPT: Developing optimized email sequences - Online Advertising ChatGPT: Facebook Ads - Online Advertising ChatGPT: Google Ads - Sales Pages ChatGPT: Developing sales page copy - Steps to create a powerful marketing funnel with ChatGPT - Identifying your buyer persona with ChatGPT - Creating a lead magnet with ChatGPT - Creating copy for the landing page and social media with ChatGPT - Writing a complete email sequence for your funnel with ChatGPT - Generating Trending YouTube Video Ideas with ChatGPT - Write a Video Script with ChatGPT - Generate YouTube Video Tags with ChatGPT - Write a YouTube Video Descriptions with ChatGPT - Improve Your Closed Captions on YouTube with ChatGPT - Introduction to Office productivity with ChatGPT - Research and Problem solving with ChatGPT - Meeting Notes, Key Points, Decisions, Action Points - Replying to emails with ChatGPT - Optimize my resume with ChatGPT - Generating Product and Business names with ChatGPT - Taglines and slogans for your brand with ChatGPT - Product descriptions for your online store with ChatGPT - Generating FAQ with ChatGPT - Research Podcast Ideas & Come Up with a Catchy Podcast Name with ChatGPT - Outline & Script Podcast Episodes with ChatGPT - Brainstorm Interview Questions & Find Potential Podcast Guests - Introduction to using ChatGPT in your website - Website copy for the homepage, about us page and contact us page - Landing page headlines and copy - Meta descriptions with ChatGPT - Come Up With Your Next Best Course Idea with ChatGPT - Write a Course Online with ChatGPT - Write the Course Landing Page/Description and Promotional Emails with ChatGPT - Adding AI Tools like ChatGPT to Your Writing Workflow - What to Look Out for in the Future of AI - Training ChatGPT with Specific Industry Knowledge - Case Study: Writing a Book from Your Video Script - Strategies for Efficient Editing & Decreasing Errors - Welcome to the Google Gemini Lessons - Key Differences Between Google Gemini & ChatGPT - Gemini Update: Export to Google Docs Feature & Dark Theme - How to Research with Google Gemini - Do A Digital Marketing Research with Google Gemini - Create Outlines for Articles, Videos & Podcasts with Google Gemini - Write an Entire Article with Google Gemini - Generate Catchy Keyword- Rich Article Titles with Google Gemini - Make Existing Article Titles More SEO-Friendly with Google Gemini - Come Up with Social Media Post Ideas with Google Gemini - Write Instagram, Facebook & Twitter Posts with Google Gemini - Create Social Media Polls with Google Gemini - Generate Fun Facts, Quotes & Jokes with Google Gemini - Turn YouTube Videos into Articles and Create Podcast Show notes with Google Gemini - Write an Email Interview Request with Google Gemini - Come Up with Interview Questions with Google Gemini - Outline an Online Course and Course Lessons with Google Gemini - Write Course Landing Pages, Title and Learning Outcomes - Write Supplemental Learning Materials like PDF Guides with Google Gemini - Write Promotional Emails with Google Gemini - Answer Student Questions with Google Gemini - Introduction to Digital Marketing with Google Gemini - Write copy like a Pro with Google Gemini and Copywriting Frameworks - Online Advertising Google Gemini: Facebook Ads - Online Advertising Google Gemini: Google Ads - Replying to emails with Google Gemini - Meeting Notes, Key Points, Decisions, Action Points - Optimize my resume with Google Gemini - Generating Product and Business names with Google Gemini - Taglines and slogans for your brand with Google Gemini - Product descriptions for your online store with Google Gemini - Generating FAQ with Google Gemini - How to Write an Ethical Essay with Google Gemini - Creating your Midjourney account - Tip: Chat privately with Midjourney in Discord - Creating product images with Midjourney - Creating product photographs with Midjourney - Creating website ideas with Midjourney - Creating a logo for my business with Midjourney - Outline your Book with ChatGPT - Basic Formatting in Google Docs - Signing Up for Amazon Kindle Direct Publishing - 3 AI Voice Over Generators - Clone Your Own Voice with Eleven Labs - Introduction to Adobe Firefly - Text to Image Generation - Generative Fill - Text Effects - Text to Template Thank you so much for checking out my course. I look forward to seeing you in the course. So wait no more! Click on the 'Buy now' button and join my course today!! Also check out my other courses!! Who this course is for: Anyone who wants to stay up-to-date with technological advancements and gain a competitive edge in their field. Marketers and content creators who want to streamline their workflow and improve their productivity using ChatGPT. Business owners who want to improve their marketing, content creation, and customer engagement using ChatGPT. Researchers who want to conduct effective research for academic or professional purposes using ChatGPT. Students who want to improve their academic writing skills and use ChatGPT to answer questions related to their coursework. Original price was: $149.99.Current price is: $94.99.
Cyber Security: From Beginner to Expert Original price was: $100.00.Current price is: $49.95.
Course Introduction to Programming Original price was: $144.99.Current price is: $59.99.
Advanced C Programming Course Original price was: $149.99.Current price is: $94.99.
The Complete Node.js Developer Course (3rd Edition) Original price was: $199.99.Current price is: $149.99.