Posts

Showing posts with the label types of data structure

Do You Know, What is Data Structure?

Image
 Hello Friends, From today's post we will start the Data Structure tutorial and will understand this in very easy and fun way. So, let's start this.. What is Data Structure? Data structure is a systematic way to organize data in order to use it efficiently. That means, organizing data in that way so that we can access the data very easily. Data structure is not any language as C,C++,JAVA etc. rather this is the set of algorithms which we use to design/structure the data in any programming language. Data structure is main part of many computer science algorithms  through which a programmers handle the data properly. This plays a key role in better performance of program or software. Characteristics of a Data Structure: Data structure implementation should implement its interface correctly. Running time or execution time of operations of data structure must be as smell as possible. Memory usage of a data structure operation should be as little as possible. This describes that ho...