Friday, 17 April 2020

Tree in Data Structure


What is a tree in Data Structure? 
A tree is often used to represent a hierarchy. This is because the relationships between the items in the hierarchy suggest the branches of a botanical tree.

Monday, 13 April 2020

STATIC AND DYNAMIC DATA IMPLEMENTATIONS


In computer science, a static data structure is a data structure created for an input data set which is not supposed to change within the scope of the problem. When a single element is to be added or deleted, the update of a static data structure incurs significant costs, often comparable with the construction of the data structure from scratch. In real applications, dynamic data structures are used, which allow for efficient updates when data elements are inserted or deleted.There exist methods, called dynamization, to convert static data structures into dynamic ones.

What is ABSTRACT DATA TYPE?

ABSTRACT DATA TYPE