Data structure is a particular way of storing and organizing information in a computer so that it can be retrieved and used most productively.
Different kinds of data structures are meant for different kinds of applications, and some are highly specialized to specific tasks.
Data structures are important for the following reasons:
1. Data structures are used in almost every program or software system.
2. Specific data structures are essential ingredients of many efficient algorithms, and make possible the management of huge amounts of data, such as large integrated collection of databases.
3. Some programming languages emphasize data structures, rather than algorithms, as the key organizing factor in software design.
*********************************************************************************************************************
The course aims to teach basic data structures in computer programming. The data structures taught in the course will include Stack, Queue and Linked List using the C programming language. The primary goal is to make students visualize how different data structures work. You should take this course if you have just learned programming and want to lean how different data structures work. This course will give you enough conceptual knowledge to help you proceed with implementation of data structures yourselves.
Course Topics
- Stack
- Queue
- Linked List
Who is the target audience?
- students of computer science
- Students what to understand the concept of linked list
- This course is meant for newbies to data structures. Those who have just learnt a programming language and want to learn the basics of how data structures work
0 Comments