What do you think?


Data Structures and Algorithms Made Easy
Success key books
What is unique?
Main objective is not to give you the theorems and proofs about DS and Algorithms. I have followed a pattern of improving the problem solutions with different complexities (for each problem, you observe multiple solutions with different improved complexities). Basically, its an enumeration of possible solutions. With this approach, even if we get a new question it gives us a way to think about all possible solutions.
Target Audience?
These books are very much useful for interview preparation, exam preparation, campus preparations.
Language?
All code was written in C . I am planning to release the same in Java and as of now there is no time bound for this :)
All the above details can also be seen CareerMonk.com
Note : Before taking decision, I strongly recommend you to go through the sample chapters provided in site. That gives you an idea about the pattern of problems in the book. If you feel this will help others, please spread this mail.
The main objective of this book is to make people aware of importance of data structures and algorithms.
As a job seeker if you read the referenced books completely with good understanding, I am sure you will challenge the interviewers and that is the main objective.
If you read as an instructor , you will give better lectures with easy go approach and a result your students will feel proud for selecting Computer Science/Information Technology as their degree.
These books are very much useful for the students of Engineering and Masters during their academic preparations. All the chapters of this book contain theory and their related problems as many as possible. There are a total of approximately 700+ algorithmic problems and all of them are with solutions.
And finally if you read as a student preparing for competition exams [or any other exam for Computer Science/Information Technology], then the content of this book covers all the required topics in full detail. While writing the book, an intense care has been taken to ensure that the content should help students who are preparing for these kinds of exams.
In all the chapters you will see more importance given to problems and analyzing them instead of concentrating more on theory. For each chapter, first you will see the basic required theory and then problems.
What is unique?
Main objective is not to give you the theorems and proofs about DS and Algorithms. I have followed a pattern of improving the problem solutions with different complexities (for each problem, you observe multiple solutions with different improved complexities). Basically, its an enumeration of possible solutions. With this approach, even if we get a new question it gives us a way to think about all possible solutions.
Target Audience?
These books are very much useful for interview preparation, exam preparation, campus preparations.
Language?
All code was written in C . I am planning to release the same in Java and as of now there is no time bound for this :)
All the above details can also be seen CareerMonk.com
Note : Before taking decision, I strongly recommend you to go through the sample chapters provided in site. That gives you an idea about the pattern of problems in the book. If you feel this will help others, please spread this mail.
The main objective of this book is to make people aware of importance of data structures and algorithms.
As a job seeker if you read the referenced books completely with good understanding, I am sure you will challenge the interviewers and that is the main objective.
If you read as an instructor , you will give better lectures with easy go approach and a result your students will feel proud for selecting Computer Science/Information Technology as their degree.
These books are very much useful for the students of Engineering and Masters during their academic preparations. All the chapters of this book contain theory and their related problems as many as possible. There are a total of approximately 700+ algorithmic problems and all of them are with solutions.
And finally if you read as a student preparing for competition exams [or any other exam for Computer Science/Information Technology], then the content of this book covers all the required topics in full detail. While writing the book, an intense care has been taken to ensure that the content should help students who are preparing for these kinds of exams.
In all the chapters you will see more importance given to problems and analyzing them instead of concentrating more on theory. For each chapter, first you will see the basic required theory and then problems.
First published March 30, 2011
Ratings & Reviews
Friends & Following
Create a free account to discover what your friends think of this book!
Community Reviews
Displaying 1 - 30 of 47 reviews
November 2, 2016
A morale booster for all those people who need to binge-read algorithms before a test/interview. The shoddy editing of the book is evident by the direct copy-pasted material from online sources. Wouldn't recommend to anyone to learn Algorithms unless they are on a time crunch.
July 3, 2021
The book goes through data types, data structures, and algorithms with real-life examples to place the learner in a position to relate the data structures to the kind of problems they solve.
My Notes for Own Future Reference:
Chapter 1: Intro to Data Structures and Algorithms
A data type in a programming language is a set of data with predefined values. Examples of data types are integer, floating-point, unit number, character,
string, etc.
Computer memory is all filled with zeros and ones. If we have a problem and we want to code it,
it’s very difficult to provide the solution in terms of zeros and ones. To help users, programming
languages and compilers provide us with data types. For example, integer takes 2 bytes (actual
value depends on the compiler), float takes 4 bytes, etc. This says that in memory we are combining 2 bytes (16 bits) and calling it an integer. Similarly, combining 4 bytes (32 bits) and calling it a float. A data type reduces the coding effort. At the top level, there are two types of data types:
• System-defined data types (also called Primitive data types)
• User-defined data types
Based on the discussion above, once we have data in variables, we need some mechanism for
manipulating that data to solve problems. The data structure is a particular way of storing and
organizing data in a computer so that it can be used efficiently. A data structure is a special
format for organizing and storing data. General data structure types include arrays, files, linked
lists, stacks, queues, trees, graphs, and so on.
Depending on the organization of the elements, data structures are classified into two types:
1) Linear data structures: Elements are accessed in sequential order but it is not
compulsory to store all elements sequentially. Examples: Linked Lists, Stacks and
Queues.
2) Non – linear data structures: Elements of this data structure are stored/accessed in a
non-linear order. Examples: Trees and graphs
Stacks are seen as a vertical linear collection, whereas queues can be seen as a horizontal linear collection of elements. The collection of plates placed one over the other is a real-world example of a stack, whereas people standing in a queue to pay an electricity bill is a real-world example of the queue
Use a stack when you want to get things out in the reverse order than you put them in. Use a list when you want to get anything out, regardless of when you put them in (and when you don't want them to automatically be removed)
An algorithm is the step-by-step unambiguous instructions to solve a given problem.
My Notes for Own Future Reference:
Chapter 1: Intro to Data Structures and Algorithms
A data type in a programming language is a set of data with predefined values. Examples of data types are integer, floating-point, unit number, character,
string, etc.
Computer memory is all filled with zeros and ones. If we have a problem and we want to code it,
it’s very difficult to provide the solution in terms of zeros and ones. To help users, programming
languages and compilers provide us with data types. For example, integer takes 2 bytes (actual
value depends on the compiler), float takes 4 bytes, etc. This says that in memory we are combining 2 bytes (16 bits) and calling it an integer. Similarly, combining 4 bytes (32 bits) and calling it a float. A data type reduces the coding effort. At the top level, there are two types of data types:
• System-defined data types (also called Primitive data types)
• User-defined data types
Based on the discussion above, once we have data in variables, we need some mechanism for
manipulating that data to solve problems. The data structure is a particular way of storing and
organizing data in a computer so that it can be used efficiently. A data structure is a special
format for organizing and storing data. General data structure types include arrays, files, linked
lists, stacks, queues, trees, graphs, and so on.
Depending on the organization of the elements, data structures are classified into two types:
1) Linear data structures: Elements are accessed in sequential order but it is not
compulsory to store all elements sequentially. Examples: Linked Lists, Stacks and
Queues.
2) Non – linear data structures: Elements of this data structure are stored/accessed in a
non-linear order. Examples: Trees and graphs
Stacks are seen as a vertical linear collection, whereas queues can be seen as a horizontal linear collection of elements. The collection of plates placed one over the other is a real-world example of a stack, whereas people standing in a queue to pay an electricity bill is a real-world example of the queue
Use a stack when you want to get things out in the reverse order than you put them in. Use a list when you want to get anything out, regardless of when you put them in (and when you don't want them to automatically be removed)
An algorithm is the step-by-step unambiguous instructions to solve a given problem.
August 11, 2023
Not the best book to pick up if you’re a beginner. The writer has not taken the time to explain the concepts in detail and I felt like it was trying to cover too much in lesser pages. Also, the codes are downright wrong a lot of times. And it’s not interactive at all.
February 7, 2021
finally i did it ...
February 22, 2016
Explains all the Data structures and Algorithms concepts. This books language is easy to understand and it has lots of problems to solve, to strengthen your knowledge.
Want to Read
February 26, 2013Its competitive
This entire review has been hidden because of spoilers.
May 18, 2016
Excellent book for getting yourself ready for the coding interviews
May 9, 2018
Its the best book to learn about Algorithms. Will recommend it to every software engineer.
August 28, 2019
Typos and no polish. I suspect that the author copied and pasted from multiple sources and rushed it to the printer. Do yourself a favor and pass on this one.
August 30, 2019
A good book for interview preparation. Covers all the commonly asked interview questions in a simple and organised manner.
March 3, 2019
Get it from https://www.ideakart.com/book/data-st...
At amazing discount, buy this from Ideakart
At amazing discount, buy this from Ideakart
Read
May 24, 2020this is best book for preparing gate
June 5, 2023
Atrocious
Want to Read
February 8, 2017fsv
January 1, 2017
The book is good in the sense that it can be useful to beginners as well as experienced to know/recap the logic. However the book is best suitable to the students who want to prepare for campus placement or to the job seekers.
The language used in the book is very clear and to the point. The author has presented several solution to the same problem keeping in mind the time/space complexity.
This book can also be used as a reference book for revising algorithm.
The language used in the book is very clear and to the point. The author has presented several solution to the same problem keeping in mind the time/space complexity.
This book can also be used as a reference book for revising algorithm.
February 17, 2013
amazing book i have ever found
Read
July 14, 2013good
Currently Reading
August 26, 2013i have heard that, this is a very good book that's why i want to read
March 24, 2014
Talks to the Point. Many practical Examples with easily understandable code snippets.
A definite read for an algorithm Engineer!
A definite read for an algorithm Engineer!
Want to Read
July 30, 2014nothiujhguhvh
]g
]g
Currently Reading
January 13, 2015good book
Read
June 3, 2015nice
Read
August 3, 2015Location: ND5 IRC
Accession No: DL027419
Accession No: DL027419
October 18, 2015
Want to read
December 2, 2015
narsimha
Read
March 2, 2016i want to read this book
This entire review has been hidden because of spoilers.
Want to Read
May 21, 2016vjttkt
Read
August 13, 2016book is good for algorithms and improving thinking skills
This entire review has been hidden because of spoilers.
Displaying 1 - 30 of 47 reviews



















