0% found this document useful (0 votes)
2 views13 pages

DSA Python

The Master Data Structures and Algorithms using Python course is designed for beginners and intermediate coders, focusing on essential coding concepts critical for job placements. It includes over 350 problems, 6 live projects, and offers placement assistance, with a duration of 4 to 6 months. The syllabus covers a wide range of topics including recursion, data structures, algorithms, and interview preparation for top tech companies.

Uploaded by

gauravminergm
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views13 pages

DSA Python

The Master Data Structures and Algorithms using Python course is designed for beginners and intermediate coders, focusing on essential coding concepts critical for job placements. It includes over 350 problems, 6 live projects, and offers placement assistance, with a duration of 4 to 6 months. The syllabus covers a wide range of topics including recursion, data structures, algorithms, and interview preparation for top tech companies.

Uploaded by

gauravminergm
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 13

SYLLABUS

MASTER DATA STRUCTURES


AND ALGORITHMS USING
PYTHON

THIS COURSE IS IDEAL FOR

Students stepping into the world of


coding or for those who have
intermediate expertise and want to
become a Pro Coder.
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

WHY SHOULD YOU DO


THIS COURSE?
Highly Important for jobs and internships
Any good developer is expected to be well conversant
with data structures and algorithms and these concepts
are tested in almost good companies while screening
candidates for software developer role.

Foundation concepts of coding


The concepts taught in this course are the foundation of
coding. Having mastery over them ensures that you
come up as a great coder.

Required for development level programs


Concepts like Data structures, algorithms are required
to write good code and are the basis of development
level programs like Full stack Web development or
Mobile development

COURSE HIGHLIGHTS
01 350+ Problems 03 6 Live projects

Taught in Classroom,
02 4/6 months 04 Online and Live modes

THIS COURSE INCLUDES


350+ Problem Set
6 Live Projects
4/6 Months Course
Certificate of completion and Certificate of Excellence
Placement assistance.
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

SYLLABUS
Flowcharts and Psuedocode
This helps you to understand how to convert logic and write it in the form of
diagrammatic and textual way.
Basics of Programming
For any language the first and the most important thing to learn is the syntax, variables,
INTRODUCTION

loops, and conditionals. In this section, we will cover how to convert our logic to Python.
Operators in Python
To help you understand different types of operators such as Arithmetic, Compund
assignment, Bitwise, and Logical operators.
Functions
In this section, you will learn to write code in a modular way to help you reuse the code
in different C++ files and make it more readable and organized.
Arrays - List,Tuples
This is the one of most important data structure that is generally easy to understand
but algorithms and concepts of this topic can be very tricky and it is asked in almost
every tech company. Algorithms such as Binary Search, Sorting, Maximum Subarrays,
DATA STRUCTURE AND ALGORITHMS

and Searching are must to do in order to get a good grasp of this topic. You will learn
about memory representation of lists and tuples, difference between them as well as
python specific things such as list slicing and list comprehension.
Bitmasking
In this section, we will understand how Bitwise operators like AND, OR, XOR, and NOT to
work on machine code to help write the programs that works faster, since computer
understands machine code.
This concept is also very useful in Recursion as well as Dynamic programming advanced
concepts.
Strings
It's an alternative to Character Array, Strings data type helps in handling string easier and
faster.vIn depth understanding of this concept becomes easier after understanding OOPs
concepts.
Recursion Introduction
Inorder to understand Recursion we must understand Recursion, so this is what is
focussed here i.e. write codes using Recursion.
It is used in Dynamic Programming and as well as in data structure such as Trees,
Graphs, and Heap etc.
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

SYLLABUS
Deep Diving into recursion
In this section, we will start exploring how to form recurrence relations using problem
statements and mainly discussing recursion on arrays and strings.
Recursion on Subsets
In this section, we will understand how to solve algorithms such as phone search and
RECURSION & BACKTRACKING COMPLEXITIES

advanced concept of Knapsack that is mostly asked in Interviews.


Backtracking
It is the most important concept to understand in Recursion and it is thoroughly
checked in Interviews and Technical Rounds. If one has to master recursion they need to
master backtracking.
Divide and Conquer
In this section we will learn about divide and conquer approaches such as quick sort and
merge sort.
Time and Space Complexity
It helps us to compare the algorithms on the basis of Time and Space it takes to run the
code and help us to master how to write codes by considering constraints of the
problem.
Object Oriented Programming
One of the most important topic to build data structures, this is not only used in every
data structure but also help us to understand how to associate the real world with
programming language.
Linked List
In this topic we learn how to store data in a non-contiguous manner and we understand
how the Linked List can work in a better time complexity that other data structures in
OOPS CONCEPTS AND ADVANCED DATA STRUCTURE

some operations.
Stack
It follows the principle of Last In and First Out, although this data structure can be easily
understood but the concept of LIFO can be used to solve some typical problems such as
Histogram Area, Stock Span, and Balanced Parantheses etc.
Queues
This data structure works just like a normal queue does and it is mainly used as a
helping data structure in Trees and Graphs.
DeQueue
It will help you in the Interview questions based on Sliding Window.
Binary Trees and Binary Search Trees
In this data structure, we learn how to store data in a hierarchical format. It is one of
the most important topic from Interview point of view and questions from this topic is
frequently asked in companies such as Amazon, Microsoft, Flipkart and Google etc.
Heap
This data structures helps you to understand how the infinite stream of data coming
can be accessed to fetch the useful information, for example, find the most sold
products on any website?
Dictionary
It helps us to understand how we can store, search, update and delete the data in
constant time. It is majorly used in Dynamic Programming and Graphs to help us make
the time complexities of the algorithms better.
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

SYLLABUS
Graphs
The most popular data structures in companies like Direct-i, Google, and Arcesium etc. It
is usually considered tough because of the dependency on other data strucutres such as
queue, hashmaps, sets, and heap etc. but once you get a taste of how to apply these
things together it will make you a better programmer.
DP AN DGREEDY ALGORITHM

Tries
It helps us to search in constant time and incase you want to use auto suggestions
features of Amazon, Flipkart or other sites search bar this is the solution. Many problems
such as Maximum-Xor, and Maximum Sum etc. uses tries to help improve complexity of
the problem.
Python Collections Module
The Collections in python is a module that provides multiple architectures or data
structures to store and manipulate the group of objects. Every Structure has its unique
use and depending on situation they can be more helpful than built-in data structures
such as list, tuple, dictionary,etc.
One Dimensional Dynamic Programming
We learn how we can improve the time complexities of Recursive algorithms drastically
using concepts like Top Down approach. Also we convert out Top down approach to
bottom up approach using the recurrence relation and DP concept, it's exactly what is
INTERVIEW QUESTIONS AND EXPERIENVCE

required for the master DP.


Two Dimensional Dynamic Programming
The most important concepts of DP are Knapsack, Optimal Game strategy, and solving
string problems using 2D storage there by improving their complexities multiple folds.
TOP DP Algorithm
Knapsack, LCS, LIS, Matrix Chain Multiplication are amongst the topics/algorithms that
one should know to crack top placements.
Greedy Algorithms
This is where you learn how being greedy can benefit you to solve certain problems in a
faster way. The main point of focus here is to understand where we can apply Greedy
over Dynamic Programming.
Top Tech Company Questions
Practise from the most asked questions in companies such as Amazon, Facebook,
Microsoft, LinkedIn, and Google etc. Become the programmer to crack any of your dream
company.
Google, Amazon, GoJek, Flipkart, Uber, Amex Interview mantras
This will give you an idea of how you should prepare yourself for the final interviews and
prepare yourself for everything that you may face during the placement process of any
company.
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

PROJECTS

S
SNNAAKKEE
G
GAAMMEE

This project uses Arrays to build a


very interesting Snake game

Make your very own Sudoku solver with


Backtracking

This project uses concepts of


DSA to build Splitwise App

Design your very own Frog game while


using Greedy optimisation in DSA
Plan your travel when you build your own
application by using Graphs

Use DP optimisation to build this all time


favourite game and be a leader in your pack
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

CHOOSE HOW YOU


LEARN
You can pick from the following modes to learn

Classroom Batch

Live Batch Online Batch

WHY CHOOSE CODING BLOCKS


Industry-vetted
01 Superb mentors 03 curriculum
Project based
02 learning 04 Superb placements

INSPIRATIONAL STORIES

Abhas Kedia Dhriti Saini


SDE-1, J.P Morgan SDE-1, American Express
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

Anubhav Gupta Tuhina Singh


SDE-1, Zomato SDE-1, Goldman Sachs

Praveen Gupta
SDE-1, ThermoFisher

You Can Be One Of Them! 🚀


MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

OUR STUDENTS CAN BE FOUND IN

RETURN ON INVESTMENT

45x - 200x
After the completion of the course you will
get a ROI of 45 - 200x
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

PLACEMENT ASSISTANCE
A dedicated Placement team along with Hiring Blocks, the placement portal of Coding
Blocks work round the clock to ensure the best of opportunities in the Tech arena are
available to you.

ALL THE HELP YOU NEED


01 Developer CV and Dev profile preparation

02 Interview preparation

150+ Partner companies for Placements and


03 internships

04 Mock interviews
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

LERNING CYCLE
MENTORS

Shubham Singhal
Instructor and Product engineer

A wide network of TAs aka Teaching


TEACHING ASSISTANTS

assistants, who are typical ex-


students of Coding Blocks helps in
Doubt resolution along with
Mentors, through Video, Audio,
Screen share and other media to
ensure all your queries are
addressed timely

TAs
Your Code buddies
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

LEARNING CYCLE
INDUSTRY EXPERTS

Industry experts are guides currently


working in Top companies like Google,
Amazon, Microsoft and the like and
they helps students with invaluable
tips on the Industry, Hiring process,
Mock interviews and other necessities
required for paving the way into the
Top Tech companies around the
globe.

Industry Coaches
PORTAL

Tech enabled learning


TThe e-learning portal is an in-house developed, state of the art application
which uses the best of technology and resources to ensure all learners gain the
maximum from their program. It provides immersive learning with
suggestions and guidance to ensure even self learning is effective and fruitful.
This portal allows learning through ebooks, videos, notes while allowing
learners to attempt coding problems, MCQ assignments with attending live
classes and asking doubts through chat and live video calling feature with
mentors and TAs.
MASTER DATA STRUCTURES AND
ALGORITHMS USING PYTHON

CONTACT US
9999 579 111 Toll free number
CALL US

1800 274 4504


9999 579 222

9999 579 333


EMAIL US

admissions@codingblocks.com
info@codingblocks.com

PITAMPURA PITAMPURA
47, Nishant Kunj 360, Kohat Enclave
1 & 2 floor 2 floor
Pitampura Pitampura
New Delhi New Delhi

NOIDA SOLAN
Bridgekala, Near New
CENTRES

A-73, Sector 2
Near Sector 15 Metro station Bus Stand, Solan By-Pass
Noida National Highway
Uttar Pradesh Himachal Pradesh

https://www.codingblocks.com
WEB

https://online.codingblocks.com

You might also like