Data Structures

Syllabus with topics linked

Data Structure

Unit 1: Growth of Functions, Recurrence Relations

Unit 2: Arrays, Linked Lists, Stacks, Queues, Deques

Unit 3: Recursion

Unit 4: Trees, Binary Trees

Unit 5: Binary Search Trees, Balanced Search Trees

Unit 6: Binary Heap, Priority Queue

Unit 7: Graph Representations and Traversal Algorithms

What Are Data Structures?

What Are Data Structures?

A data structure is a storage that is used to store and organize data. It is a way of arranging data on a computer so that it can be accessed and updated efficiently.

read more
Analysis Of Insert, Delete And Search Operations In Arrays

Analysis Of Insert, Delete And Search Operations In Arrays

Arrays are one of the fundamental data structures in computer science. They provide a way to store and organize collections of data efficiently. In this article, we will delve into the analysis of three fundamental operations on arrays: Insertion, Deletion, and Search.

read more