Data Structure and Algorithmic Thinking with Python: Data Structure and Algorithmic Puzzles 1st Edition
| Narasimha Karumanchi (Author) Find all the books, read about the author, and more. See search results for this author |
Use the Amazon App to scan ISBNs and compare prices.
Peeling Data Structures and Algorithms:
The sample chapter should give you a very good idea of the quality and style of our book. In particular, be sure you are comfortable with the level and with our Python coding style. This book focuses on giving solutions for complex problems in data structures and algorithm. It even provides multiple solutions for a single problem, thus familiarizing readers with different possible approaches to the same problem.
"Data Structure and Algorithmic Thinking with Python" is designed to give a jump-start to programmers, job hunters and those who are appearing for exams. All the code in this book are written in Python. It contains many programming puzzles that not only encourage analytical thinking, but also prepares readers for interviews. This book, with its focused and practical approach, can help readers quickly pick up the concepts and techniques for developing efficient and effective solutions to problems.
Topics Covered:
- Organization of chapters
- Introduction
- Recursion and Backtracking
- Linked Lists
- Stacks
- Queues
- Trees
- Priority Queue and Heaps
- Disjoint Sets ADT
- 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
- Miscellaneous Concepts
Customers who viewed this item also viewed
Editorial Reviews
About the Author
- Data Structures and Algorithms Made Easy
- IT Interview Questions
- Data Structures and Algorithms for GATE
- Data Structures and Algorithms Made Easy in Java
- Coding Interview Questions
- Peeling Design Patterns
- Elements of Computer Networking
- Data Structure and Algorithmic Thinking with Python
- Algorithm Design Techniques
Product details
- Publisher : CareerMonk Publications; 1st edition (January 29, 2015)
- Language : English
- Paperback : 436 pages
- ISBN-10 : 8192107590
- ISBN-13 : 978-8192107592
- Item Weight : 2.22 pounds
- Dimensions : 8.5 x 0.99 x 11 inches
- Best Sellers Rank: #622,592 in Books (See Top 100 in Books)
- #132 in Computer Programming Structured Design
- #172 in Computer Algorithms
- #332 in Computer Systems Analysis & Design (Books)
- Customer Reviews:
About the author

Narasimha Karumanchi is the founder/author of CareerMonk Publications, Principal Software Engineer at Microsoft, and author of a few books on data structures, algorithms, and design patterns. He was a software developer who has been both interviewer and interviewee over his long career. Most recently he worked for Amazon Corporation, and IBM Software Labs. Narasimha holds M.Tech. in computer science from IIT, Bombay, and B.Tech. from JNT University. He authored the following books which got translated to international: Chinese, Japanese, Korean, and Taiwanese. Also, around 80 international universities were using these books as references for academic courses.
Data Structures and Algorithms Made Easy
IT Interview Questions
Data Structures and Algorithms for GATE
Data Structures and Algorithms Made Easy in Java
Coding Interview Questions
Peeling Design Patterns
Elements of Computer Networking
Data Structures and Algorithmic Thinking with Python
Data Structures and Algorithmic Thinking with Go
Algorithm Design Techniques
Customer reviews
Customer Reviews, including Product Star Ratings help customers to learn more about the product and decide whether it is the right product for them.
To calculate the overall star rating and percentage breakdown by star, we don’t use a simple average. Instead, our system considers things like how recent a review is and if the reviewer bought the item on Amazon. It also analyzed reviews to verify trustworthiness.
Learn more how customers reviews work on AmazonTop reviews from the United States
There was a problem filtering reviews right now. Please try again later.
2) Code examples / solutions use very poor style and conventions that should not be used in interviews, let alone books (i.e. use of global variables when there are better work arounds, poor variable names, things like "while (1):" as opposed to "while True:")
Problem Solving with Algorithms and Data Structures by Miller and Ranum is free and better.
Also, I like how this book places more emphasis on learning about the algorithms and data structures themselves rather than on the mathematical theory behind them, as you would find in Cormen's book for instance. Cormen's book is great if you're working on a PhD in computer science, but if you just want to gain a good understanding of algorithms and data structures for education and the workplace Karumanchi's book is the one to buy.
Every computer science student and working computer science professional should own a copy of this book!!!
Additionally I have found parts of the book that were copied from the internet. The code from section 6.11 on BST on pages 180 and 181 were taken directly including comment from a page on the University of Toronto.
The bucket sort code on page 296 is taken directly from .geekviewpoint.com.
Nowhere is there an attribution or footnote crediting the actual authors of this. Using other's work without attributing credit could be considered plagiarism.
If this weren't bad enough the quality of the paper stock of this book is a joke. It's translucent like typing paper. The text printed on the back of each page bleeds through to the current page.
As if all of this weren't bad enough the book doesn't have an index! What book doesn't have an index? Good luck finding anything.
For example:
def insertNode(root, node):
if root is None:
root = node
else:
if root.data > node.data:
if root.left == None:
root.left = node
else:
insertNode(root.left, node)
else:
if root.right == None:
root.right = node
else:
insertNode(root.right, node)
In GitHub is ok, but not in the book. I guess is a victim of copy/paste :D
- A lot of typos
- Bad python coding style
- Many of the answer does not match its explanation above at all
- The explanation of questions does not match its definition in the same chapter
I do like to see a better python interview preparation book besides this one.
Top reviews from other countries
This book has made Data Structures and Algorithms very much easy for me.










