Mô tả

This "Data Structures and Algorithms In C#" course is thoroughly detailed and uses lots of animations to help you visualize the concepts.

Instructor is author of popular books "C In Depth" and "Data Structures Through C In Depth" helped 250,000+ students & professionals.

This "Data Structures and Algorithms in C#" tutorial will help you develop a strong background in Data Structures and Algorithms (DSA). The course is broken down into easy to assimilate short lectures, and after each topic there is a quiz that can help you to test your newly acquired knowledge. The examples are explained with animations to simplify the learning of this complex topic. Complete working programs are shown for each concept that is explained.

This Data Structures and Algorithms using C# course provides a comprehensive explanation of data structures like linked lists, stacks and queues, binary search trees, heap, searching and hashing. Various sorting algorithms with implementation and analysis are included. Concept of recursion is very important for designing and understanding certain algorithms so the process of recursion is explained with the help of several examples.

This Data Structures in C# course covers following topics with C# implementation :

Algorithm Analysis, Big O notation, Time complexity, Singly linked list, Reversing a linked list, Doubly linked list, Circular linked list, Linked list concatenation, Sorted linked list.

Stack, Queue, Circular Queue, Dequeue, Priority queue, Polish Notations, Infix to Postfix, Evaluation of Postfix, Binary Tree, Binary Search Tree, Tree Traversal (inorder, preorder, postorder, level order), Recursion, Heap, Searching, Hashing

Sorting : Selection, Bubble, Insertion, Shell, Merging, Recursive Merge, Iterative Merge, Quick, Heap, Binary tree, Radix, Address calculation sort

Here is the course content-

  • Algorithm Analysis

  • Linked List

  • Stack and Queue

  • Recursion

  • Binary Tree

  • Binary Search Tree

  • Heap

  • Sorting

  • Searching

  • Hashing

Throughout this Data Structures and Algorithms with C# course, a step by step approach is followed to make you understand different Data Structures and Algorithms. You will see code implementation of different data structures in C# and algorithms are explained in step-wise manner. Through this course you can build a strong foundation and it will help you to crack Data Structures and Algorithms in C# coding interviews questions and work on projects. Good foundation on Data Structures and Algorithms in C# interview topics helps you to attempt tricky interview questions.

In this Data Structures and Algorithms Through C# In Depth course, C# programs are used for implementing various concepts, but you can easily code them in any other programming language like C++, Java or Python.

This Learn Data Structures and Algorithms In C# online course on udemy will help software developers to refresh the concepts studied in Data Structures and Algorithms In C# books / pdf and also to students learning from referred book / pdf.

What students are saying about this course-

"Very knowledgeable tutor. So much better than reading a book. It is really helpful for coding assessment."

"Clear and concise explanation of basic to advanced data structures. I was able to utilize this knowledge in refactoring my application to perform faster. Lot of concepts were covered in this course which helps in tackling interview questions."

"This course is good and really demonstrates what should the developers know before the technical interview with top companies such as Amazon , Google , Microsoft  "

"I really like this course and am learning a lot, even though I studied Data Structures during my college days no one explained like this way. Very detail oriented and simply superb! Keep up the great work!"  

"This course is extraordinary i recommend for all data structure and algorithm beginner who study any programming language  "

"This is an excellent course - very similar to the Intro to Data Structures and Algorithms course I took in college. The diagrams and pictures are very helpful. The examples are all written out in clear and simple C# code. If your goal is to be able to whiteboard coding algorithms this course is a good place to start."

"Yes its really helpful to understand Algorithms and Data structures being a programmer me."

"short and precise introduction, author is convincing as efficient instructor"

"Very informative and the visual style helped picture it better." 

"Nice explanation of Trees and Binary Tree" 

"Very clear and concise explanations and examples. I learned a lot of data structures." 

"the explanation is clear and easily understandable"  

"Concepts explained neatly !!"  

"The lectures are clear and precise."

"Great tutorial"

"The author is doing a superb job so far at explaining the concepts behind algorithms and data structures."
 

So what are you waiting for, click on Buy button to enroll now and start learning.

Bạn sẽ học được gì

Understand the details of Data Structures and algorithms (DSA) through animations

Learn to write programs for different Data Structures and Algorithms in C#

Get the confidence to face programming interviews

Test your knowledge with over 100 Quiz questions

Learn how to analyse algorithms

Get the ability to write and trace recursive algorithms

Yêu cầu

  • Basic knowledge of programming in C#

Nội dung khoá học

12 sections

Introduction to Data Structures and Algorithms Through C# In Depth

1 lectures
Introduction to Data Structures and Algorithms Through C# In Depth
01:35

Introduction to Data Structures and Algorithms

15 lectures
Important : Source Code Repository required for course
00:11
Data Structures and Algorithms
02:54
Measuring Running time of Algorithms
02:20
Asymptotic Analysis
02:46
Big O Notation
04:06
Finding Big O
05:21
Tight and Loose Upper Bounds
01:30
Introduction Quiz A
10 questions
Big O analysis of Algorithms
02:00
Finding Time complexity
03:16
Big O analysis of Algorithms: Examples
11:24
Worst case, Best case and Average Case Analysis
03:48
Common Complexities
03:00
Abstract Data Types
03:49
Introduction Quiz B
9 questions

Linked List

25 lectures
Introduction to Linked List in C#
04:12
Traversing and Searching a Single Linked List
06:05
Finding references in a single linked list
05:22
Difference between while(p!=NULL) and while(p.link!=NULL)
00:01
Insertion in a Single Linked List
04:26
Insertion in a Single Linked List ..contd
07:05
Deletion in a Single Linked List
03:46
Your Review Matters!
00:16
Reversing a Single Linked List
02:45
Linked List Quiz A
9 questions
Sorting a Linked list using Bubble Sort
07:35
Merging of sorted Linked lists
11:51
Sorting a Linked list using Merge Sort
05:02
Finding and Removing a cycle in a Linked list
10:44
Doubly linked list
03:17
Insertion in a doubly linked List
06:15
Deletion from doubly linked list
05:12
Reversing a doubly linked list
02:49
Circular linked list
02:59
Insertion in a circular Linked List
03:58
Deletion in a circular linked list
03:40
Concatenation
03:22
Linked List with Header Node
04:48
Sorted linked list
05:27
Linked List Quiz B
8 questions

Stack and Queue

17 lectures
Introduction
02:09
Stack
01:29
Array Implementation of Stack
05:18
Linked List Implementation of Stack
04:29
Queue
01:13
Array Implementation of Queue
06:56
Linked List implementation of Queue
04:32
Queue through Circular Linked List
03:19
Circular Queue
09:29
Deque
07:44
Priority Queue
03:13
Checking validity of an expression containing nested parentheses
06:19
Evaluating Arithmetic Expressions
03:22
Polish Notations
05:56
Converting infix expression to postfix expression
11:01
Evaluation of postfix expression
03:38
Stack and Queue Quiz
9 questions

Recursion

14 lectures
Introduction
02:43
Flow of control in Recursive functions
02:10
Winding and unwinding phase
01:17
Factorial
02:42
Printing numbers from 1 to n
02:25
Sum of digits of an integer
03:36
Base conversion
02:13
Finding nth power of a number
01:55
Euclids Algorithm
03:12
Fibonacci Series
02:41
Tower of Hanoi
06:56
Tail recursion
01:50
Recursion vs. Iteration
01:26
Recursion Quiz
10 questions

Binary Tree

18 lectures
Introduction to trees
06:01
Binary Tree
06:48
Strictly Binary Tree and Extended Binary Tree
05:15
Full binary tree and Complete Binary Tree
04:58
Array Representation of Binary trees
03:26
Linked Representation of Binary Trees
01:18
Binary Tree Quiz A
10 questions
Binary Tree in C#
02:12
Traversal in Binary Tree
02:06
Preorder Traversal
05:10
Inorder Traversal
04:55
Postorder Traversal
04:35
Level order traversal
03:17
Finding height of a Binary tree
03:00
Constructing Binary tree from Traversals
01:35
Constructing binary tree from inorder and preorder traversals
04:23
Constructing binary tree from inorder and postorder traversals
03:49
Binary Tree Quiz B
10 questions

Binary Search Tree

7 lectures
Introduction
04:42
Traversal in Binary Search Tree
01:55
Searching in a Binary Search Tree
06:24
Nodes with Minimum and Maximum key
02:59
Insertion in a Binary Search Tree
07:38
Deletion in a Binary Search Tree
12:30
Binary Search Tree Quiz
9 questions

Heap

7 lectures
Introduction
02:40
Heap Representation
02:12
Insertion in Heap
07:24
Deletion
08:05
Building a heap
04:33
Heap Applications
01:06
Heap Tree Quiz
7 questions

Sorting

40 lectures
Introduction to Sorting Algorithms
05:02
Sort Stability
02:25
Selection Sort
01:49
Selection Sort : Example
01:18
Selection Sort in C#
02:58
Analysis of Selection Sort
02:20
Bubble Sort
02:24
Bubble Sort : Example
02:11
Bubble Sort in C#
04:37
Improvement in Bubble Sort
02:19
Analysis of Bubble Sort
02:04
Sorting Quiz A
10 questions
Insertion Sort
02:37
Insertion Sort : Example
02:22
Insertion Sort in C#
03:52
Analysis of Insertion sort
04:40
Shell Sort
02:24
Shell Sort : Example
02:07
Shell Sort in C#
03:49
Analysis of Shell Sort
03:29
Merging two Sorted Arrays
07:06
Recursive Merge Sort
02:29
Recursive Merge Sort in C#
04:11
Analysis of Merge Sort
00:36
Iterative Merge Sort
01:31
Iterative Merge Sort in C#
03:11
Quick Sort
06:56
Quick Sort in C#
07:24
Analysis of Quick Sort
03:00
Binary tree sort
03:05
Binary Tree Sort in C#
01:51
Analysis of Binary Tree Sort
01:14
Heap Sort
07:02
Heap Sort : C# implementation and Analysis
02:11
Radix Sort
04:17
Radix Sort : C# implementation and Analysis
06:18
Address Calculation Sort
04:50
Address Calculation Sort in C#
02:35
Analysis of Address Calculation Sort
01:02
Sorting Quiz B
10 questions

Searching

5 lectures
Linear Search
05:16
Variations of Linear Search
07:10
Binary Search
06:04
Implementation of Binary Search
14:19
Analysis of Binary Search
02:55

Hashing

11 lectures
Direct Addressing
04:17
Hashing
06:26
Collisions
02:10
Hash Functions
09:13
Open Addressing : Linear Probing
10:48
Open Addressing : Quadratic Probing
07:40
Open Addressing : Double Hashing
09:21
Deletion in Open Addressed Tables
06:15
Implementation of Open Addressing
08:24
Separate Chaining
06:54
Implementation of Separate Chaining
04:39

Bonus Lecture

1 lectures
Recommended Course and offer on my other courses
00:16

Đánh giá của học viên

Chưa có đánh giá
Course Rating
5
0%
4
0%
3
0%
2
0%
1
0%

Bình luận khách hàng

Viết Bình Luận

Bạn đánh giá khoá học này thế nào?

image

Đăng ký get khoá học Udemy - Unica - Gitiho giá chỉ 50k!

Get khoá học giá rẻ ngay trước khi bị fix.