The course will enable the students to
Course Outcomes (COs):
Course Outcome (at course level) | Learning and teaching strategies | Assessment Strategies |
---|---|---|
The students will: CO98. Analyze algorithm and its complexity while examining Arrays, CO99. Investigate Linked Lists implementations using array and allocation. CO100. Implement Operations mathematical using stack. CO101. Apply recursion and solve various recursion and analyze Linear & Binary Search. CO102. Compare various sorting and searching algorithms. | Interactive Lectures,Discussion, Tutorials,Reading assignments,Demonstrations. | Class test, Semester end examinations, Quiz, Solving problems in tutorials, Assignments,Presentation, Individual and group projects. |
Introduction to Data Structure: Information and meaning, Arrays (one, two and multi- dimensional), Row major and column major form, representation of strings, allocation of storage and scope of variable, String Processing, Pointers, Structures & unions. Algorithm definition and its characteristics, Abstract data types, Order of Complexity: Big O notation
Linked list: Introduction to linked list, linked list as a data structure, creation, insertion and deletion of nodes from a list, getnode and free node operations, concept of header nodes, array implementation of lists and its limitation, Allocating and freeing dynamic memory, comparing dynamic and array implementation of lists. Doubly Linked lists, Circular linked lists and Circular Double linked lists.C implementation: Singly & circular linked lists.
Stack: Definition, Primitive operations, representing stack in C, implementing the push and pop operation, testing exceptional conditions, infix, postfix and prefix expression (definition and examples), infix to postfix, evaluation of postfix expression (Algorithm and C implementation). Linked implementation of stacks.
Recursion definition and processes, algorithms, recursion in C, Writing recursive programs (e.g. Factorial, multiplication, Fibonacci sequence, Binary search, Towers of Hanoi Problem and similar problems), Properties of recursive definition or Algorithms, Efficiency of recursion. Searching: Linear and Binary Search.
Queues: Introduction, Definition of Queue and its sequential representation, C implementation of queues, insert and remove operation, Applications and Priority queues. Linked implementation of queues, linked implementation of priority queue. Sorting: Exchange Sorts (Bubble sort, Quick sort), Straight Selection sort, and Insertion sort.
SUGGESTED READINGS: