***Welcome to ashrafedu.blogspot.com * * * This website is maintained by ASHRAF***

    Tuesday, August 16, 2022

    Implementation of Data Structure

    Implementation of data structures can be viewed in terms of two phases:  specification and implementation.

    Phase I Specification: a data structure should be designed to know what it does and not necessarily how it will do it.

    Phase II Implementation:  At this stage, defining all functions with respect to the description of how to manipulate data. This can be done with algorithms so that the details of the operation can be understood easily, and the reader can implement them easily and effectively with the help of any programming language.

    No comments:

    Post a Comment

    Prim’s algorithm for finding MST (Minimum Spanning Tree)

    Prim's algorithm to find minimum cost spanning tree uses the greedy approach. Prim's algorithm, in contrast with Kruskal's algor...