Sign in
Information Bulletin
Question Submission
Student Space
More
Live class
Now Home (Computer Science ), DSA (Data structures & Algorithms), DBMS, Theory of Computation & Compilers, UGC NET, Discrete Structures & Optimization and Mock Test Webpages are available || Click on Student Space to Submit & View Question Answer || Prediction of ICC World Cup 2023

Data Structures and Algorithms

In computer science, a data structure is a data organization, management, and storage format that is usually chosen for efficient access to data.More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data,i.e., it is an algebraic structure about data. And, an algorithm is a collection of steps to solve a particular problem.

Algorithms + Data Structures = Programs is a 1976 book written by Niklaus Wirth covering some of the fundamental topics of computer programming, particularly that algorithms and data structures are inherently related.


Content Video

  • DATA STRUCTURES & ALGORITHMS
    • Data Structures
    • Algorithms
      • Introduction
      • Divide & Conquer
        • Master theorem
        • Recursive tree traversal
        • Recursive Vs Tower of Hanoi

Coding


Syllabus Of Data Structure & Algorithm

Unit Details Contents
Unit -I
Unit -II
Unit -III
Unit -IV
Unit -V
Unit -VI
Unit -VII

INTRODUCTION


ONLINE TOPICS

Data Structures & Algorithms Course Introduction

29 Jul 2023

Data Structure

29 Jul 2023

Static Vs Dynamic Memory Allocation

17 Aug 2023


23 Mar 2023
Weather

23 Mar 2023
Mail


RANDOM QUESTION & ANSWER :
IDEmail_idQuestionAnswer
2rahul745@gmail.com Consider a B+-tree in which the maximum number of keys in a node is 5. What is the minimum number of keys in any non-root node?Order=5+1=6. Minimum children in a non root node = Order/2=6/2=3. Keys = Minimum children in a non root node -1=2