SlideShare une entreprise Scribd logo
1  sur  6
Télécharger pour lire hors ligne
w.e.f. Academic Year 2009-10                                                                ‘E’ Scheme

Course Name : Computer Engineering Group
Course Code : CO/CM/IF/CD
Semester          : Fourth
Subject Title : Data Structure
Subject Code : 12111

Teaching and Examination Scheme:

   Teaching Scheme                                        Examination Scheme
                               PAPER
  TH         TU       PR                      TH            PR           OR           TW        TOTAL
                                HRS
   03        --       04         03           100           50#           --          25@        175

NOTE:
        Two tests each of 25 marks to be conducted as per the schedule given by MSBTE.
        Total of tests marks for all theory subjects are to be converted out of 50 and to be
        entered in mark sheet under the head Sessional Work. (SW)

Rationale:

        Data Structures is a subject of primary importance in Computer Science. Organizing or
structuring data is important for implementation of efficient algorithms and program development.
Efficient problem solving needs the application of appropriate data structures during program
development.

Objectives:
        Students will able to:
        1. Understand different types of data structures.
        2. Use the data structures stacks, queues, arrays, and lists in application programs.
        3. Use the data structures trees, graphs in application programs.
        4. Understand the applications of data structures in systems programming, database
             applications and programming languages.
        5. Compare different implementations of data structures and to recognize the advantages and
             disadvantages of the different implementations.
        6. Understand and apply sorting algorithms used in data structures such as bubble sort,
             insertion sort, selection sort, radix sort, merge sort and quick-sort.
        7. Compare the efficiency of various sorting algorithms in terms of both time and space.


MSBTE - Final Copy Dt. 01/04/2010                     1                                           12111
w.e.f. Academic Year 2009-10                                                              ‘E’ Scheme

 Learning Structure:




Application                     System Programming, Application Programming.




                       Searching            Sorting           Data Access         Data Storage
Procedure                                                     Techniques          Techniques




                     Searching            Sorting              FIFO, LIFO          Arrays, Stack, list,
Principles           Algorithms           Algorithms                               Queue, Graph




                                         Bubble,                                   Insert Delete,
                     Linear,                                    Physical, Base,
                                         Interchange,                              Push, Pop, Front,
                     Binary,                                    Virtual
Concepts                                 Merge, Bucket,                            Rear, Node,
                     Hash                                       Address.
                                         Radix,
                                                                Techniques         Pointers, data
                                                                                   Storage
                                                                                   Techniques




                                     Data in the form of text, audio, video
Facts




 MSBTE - Final Copy Dt. 01/04/2010                     2                                         12111
w.e.f. Academic Year 2009-10                                                   ‘E’
Scheme
Contents: Theory

 Chapter                              Name of the Topic                  Hours Marks
             Introduction to data structure:
             1.1 Data Representation
                   • Abstract data Types
                   • Data Structures (Linear and Non- Linear )
                   • Atomic Type
    01       1.2 Data Types                                               02         08
                  • Primitive data type
                  • Derived data type
             1.3 Operations on data structures
                  • Traversing, Inserting, Deleting
                  • Searching and sorting
             Principles of programming and Analysis of Algorithms:
             2.1 Algorithms
    02           • Different approaches for designing an algorithm        02         06
                 • Complexity in terms of time and space
                 • Big ‘O’ Notation
             Searching & Sorting:
             3.1 Sorting
                 • An Introduction
                 • Efficiency of Sorting Algorithms
             3.2 Sorting Techniques
                   • Bubble Sort
                   • Selection Sort
                   • Insertion Sort
    03                                                                    08         16
                   • Merge Sort
                   • Radix Sort (only algorithm)
                   • Shell Sort (only algorithm)
                   • Quick Sort (only algorithm)
             3.3 Searching
                 • An Introduction
                 • Linear search
                 • Binary Search
             Stacks:
             4.1 Introduction to Stacks
                 • Stacks as an Abstract Data Type
                 • Primitive operations of stacks
    04       4.2 Representation of Stacks through Arrays                  06         12
             4.3 Application of Stacks
                  • Stack machines
                  • Recursion
                  • Arithmetic expression: Polish Notation
             Queues:
             5.1 Introduction
                    • Queue as an Abstract Data Type
    05                                                                    06         12
                    • Representation of Queues
             5.2 Operations on queue : Searching ,Insertion, Deletion.
             5.3 Types of queues

MSBTE - Final Copy Dt. 01/04/2010                3                                   12111
w.e.f. Academic Year 2009-10                                                         ‘E’
Scheme
                    • Circular Queues
                    • Priority Queue
                    • Dequeues
             5.4 Application of Queues
             Linked List:
             6.1 Introduction
                    • Terminologies Node, Address, Pointer, Information,
                        Next, Null pointer, Empty list etc.
             6.2 Operations on list Searching, Insertion and Deletion
    06       6.3 Types of lists                                                 06         12
                • Linear list
                • Circular list
                • Doubly list
             6.4 Array, stacks, queues, implementation using list.
             Trees:
             7.1 Introduction to Trees
             7.2 Types of Trees
                • General tree
                • Binary tree
                • Height balanced
                • Weight balanced
    07                                                                          10         18
                • Binary search tree
             7.3 Operations on Binary Search Tree
                • Insertion of node
                • Deletion of node
                • Traversal—Inorder, Preorder and Postorder
                • Searching-- Depth-first search and Breadth-first
                     search
             Graphs:
             8.1 Introduction
                • Terminology graph, node (vertices), arcs (edge), directed
                     graph, in-degree, out-degree, adjacent, successor,
                     predecessor, relation, weight, path, length
             8.2 Sequential Representation of Graphs
    08                                                                          06         12
             8.3 Linked Representation of Graphs
             8.4 Traversal of Graphs
                • Depth-first search
                • Breadth-first search
             8.5 Shortest Path algorithm for graph
             8.6 Application of Graph
             Hashing
    09       9.1 Hash functions                                                 02         04
             9.2 Deleting items from hash tables
                                                                        Total   48     100

 Practical:
 Skills to be developed:
 Intellectual skills:
         • Use of programming language constructs in program implementation.
         • To be able to apply different logics to solve given problem.

MSBTE - Final Copy Dt. 01/04/2010               4                                          12111
w.e.f. Academic Year 2009-10                                                                  ‘E’
Scheme
         •   To be able to write program using different implementations for the same problem
         •   Study different types of errors as syntax semantic, fatal, linker & logical
         •   Debugging of programs
         •   Understanding different steps to develop program such as
                      Problem definition
                      Analysis
                      Design of logic
                      Coding
                      Testing
                      Maintenance (Modifications, error corrections, making changes etc.)
             Selection of appropriate data structures
             Selection of appropriate sorting and searching techniques

 Motor skills:

         •     Proper handling of Computer System.

List of Practical:
 Sr.No.                                            Practical
   01     Programs based on: Array operations, insertion, deletion
          Programs for implementing various sorting techniques.
   02
          (Minimum three sorting techniques from topics mentioned in the syllabus))
          Programs for implementing various sorting and searching techniques.
   03
          (Minimum two searching techniques from topics mentioned in the syllabus.)
          Programs based on Stacks
   04     Implementation of PUSH & POP operations, Evaluate postfix expressions, Infix to
          postfix conversions.
          Recursive programs: factorial, fibonaci, Ackerman function, and tower of Hanoi. (Any
   05
          two)
   06     Programs for demonstrating queue operations (Minimum two).
   07     Two programs based on Linked lists
          Programs based on trees
   08     Creating a binary tree, in order, preorder and post order traversal of binary tree, deleting a
          node from binary tree.
   09     Assignments based on graph theory.
   10     Program based on hashing

Learning Resources:
Sr. No.         Author                                 Title                        Publisher
  01      ISRD Group New Dehli          Data Structure Using C              Tata McGraw Hill

  02      Tremblie and Sorrenson        Data Structures                     TMH Publications
                                        Teach Yourself data Structure
  03      Lafore                                                            BPB Publication
                                        and Algorithms in 24 Hrs.
  04      Tannenbaum                    Data Structures using C++           PHI Publication

  05      Seymour Lipschutz             Data Structures                     Tata McGraw Hill
Books:

MSBTE - Final Copy Dt. 01/04/2010                  5                                                12111
w.e.f. Academic Year 2009-10            ‘E’
Scheme




MSBTE - Final Copy Dt. 01/04/2010   6         12111

Contenu connexe

En vedette

Lecture 6 data structures and algorithms
Lecture 6 data structures and algorithmsLecture 6 data structures and algorithms
Lecture 6 data structures and algorithmsAakash deep Singhal
 
Lecture 4 data structures and algorithms
Lecture 4 data structures and algorithmsLecture 4 data structures and algorithms
Lecture 4 data structures and algorithmsAakash deep Singhal
 
Lecture 3 data structures and algorithms
Lecture 3 data structures and algorithmsLecture 3 data structures and algorithms
Lecture 3 data structures and algorithmsAakash deep Singhal
 
Lecture 16 data structures and algorithms
Lecture 16 data structures and algorithmsLecture 16 data structures and algorithms
Lecture 16 data structures and algorithmsAakash deep Singhal
 
Lecture 15 data structures and algorithms
Lecture 15 data structures and algorithmsLecture 15 data structures and algorithms
Lecture 15 data structures and algorithmsAakash deep Singhal
 
Lecture 2 data structures and algorithms
Lecture 2 data structures and algorithmsLecture 2 data structures and algorithms
Lecture 2 data structures and algorithmsAakash deep Singhal
 
Lecture 5 data structures and algorithms
Lecture 5 data structures and algorithmsLecture 5 data structures and algorithms
Lecture 5 data structures and algorithmsAakash deep Singhal
 
Lecture 9 data structures and algorithms
Lecture 9 data structures and algorithmsLecture 9 data structures and algorithms
Lecture 9 data structures and algorithmsAakash deep Singhal
 
Lecture 13 data structures and algorithms
Lecture 13 data structures and algorithmsLecture 13 data structures and algorithms
Lecture 13 data structures and algorithmsAakash deep Singhal
 
Lecture 14 data structures and algorithms
Lecture 14 data structures and algorithmsLecture 14 data structures and algorithms
Lecture 14 data structures and algorithmsAakash deep Singhal
 
Libro contabilidad de costos serie schaum james-a-cashin-fl
Libro contabilidad de costos serie schaum james-a-cashin-flLibro contabilidad de costos serie schaum james-a-cashin-fl
Libro contabilidad de costos serie schaum james-a-cashin-flEliezer Figueroa
 
Introduction to systems programming
Introduction to systems programmingIntroduction to systems programming
Introduction to systems programmingMukesh Tekwani
 
Graph representation
Graph representationGraph representation
Graph representationTech_MX
 
Introduction to Programming Languages
Introduction to Programming LanguagesIntroduction to Programming Languages
Introduction to Programming Languageseducationfront
 
Introduction to Object Oriented Programming
Introduction to Object Oriented ProgrammingIntroduction to Object Oriented Programming
Introduction to Object Oriented ProgrammingMoutaz Haddara
 
Lect 1. introduction to programming languages
Lect 1. introduction to programming languagesLect 1. introduction to programming languages
Lect 1. introduction to programming languagesVarun Garg
 
Lecture 1 data structures and algorithms
Lecture 1 data structures and algorithmsLecture 1 data structures and algorithms
Lecture 1 data structures and algorithmsAakash deep Singhal
 
DATA STRUCTURES
DATA STRUCTURESDATA STRUCTURES
DATA STRUCTURESbca2010
 

En vedette (19)

Lecture 6 data structures and algorithms
Lecture 6 data structures and algorithmsLecture 6 data structures and algorithms
Lecture 6 data structures and algorithms
 
Lecture 4 data structures and algorithms
Lecture 4 data structures and algorithmsLecture 4 data structures and algorithms
Lecture 4 data structures and algorithms
 
Lecture 3 data structures and algorithms
Lecture 3 data structures and algorithmsLecture 3 data structures and algorithms
Lecture 3 data structures and algorithms
 
Lecture 16 data structures and algorithms
Lecture 16 data structures and algorithmsLecture 16 data structures and algorithms
Lecture 16 data structures and algorithms
 
Lecture 15 data structures and algorithms
Lecture 15 data structures and algorithmsLecture 15 data structures and algorithms
Lecture 15 data structures and algorithms
 
Lecture 2 data structures and algorithms
Lecture 2 data structures and algorithmsLecture 2 data structures and algorithms
Lecture 2 data structures and algorithms
 
Lecture 5 data structures and algorithms
Lecture 5 data structures and algorithmsLecture 5 data structures and algorithms
Lecture 5 data structures and algorithms
 
Lecture 9 data structures and algorithms
Lecture 9 data structures and algorithmsLecture 9 data structures and algorithms
Lecture 9 data structures and algorithms
 
Lecture 13 data structures and algorithms
Lecture 13 data structures and algorithmsLecture 13 data structures and algorithms
Lecture 13 data structures and algorithms
 
Lecture 14 data structures and algorithms
Lecture 14 data structures and algorithmsLecture 14 data structures and algorithms
Lecture 14 data structures and algorithms
 
Subsidence in coal mines
Subsidence in coal minesSubsidence in coal mines
Subsidence in coal mines
 
Libro contabilidad de costos serie schaum james-a-cashin-fl
Libro contabilidad de costos serie schaum james-a-cashin-flLibro contabilidad de costos serie schaum james-a-cashin-fl
Libro contabilidad de costos serie schaum james-a-cashin-fl
 
Introduction to systems programming
Introduction to systems programmingIntroduction to systems programming
Introduction to systems programming
 
Graph representation
Graph representationGraph representation
Graph representation
 
Introduction to Programming Languages
Introduction to Programming LanguagesIntroduction to Programming Languages
Introduction to Programming Languages
 
Introduction to Object Oriented Programming
Introduction to Object Oriented ProgrammingIntroduction to Object Oriented Programming
Introduction to Object Oriented Programming
 
Lect 1. introduction to programming languages
Lect 1. introduction to programming languagesLect 1. introduction to programming languages
Lect 1. introduction to programming languages
 
Lecture 1 data structures and algorithms
Lecture 1 data structures and algorithmsLecture 1 data structures and algorithms
Lecture 1 data structures and algorithms
 
DATA STRUCTURES
DATA STRUCTURESDATA STRUCTURES
DATA STRUCTURES
 

Similaire à 12111 data structure

Databases for Storage Engineers
Databases for Storage EngineersDatabases for Storage Engineers
Databases for Storage EngineersThomas Kejser
 
SE-IT DSA THEORY SYLLABUS
SE-IT DSA THEORY SYLLABUSSE-IT DSA THEORY SYLLABUS
SE-IT DSA THEORY SYLLABUSnikshaikh786
 
Course module of DS
Course module of DSCourse module of DS
Course module of DSPCTE
 
Syllabus for screening test 10+2 lecturer in computer sciences..
Syllabus for screening test 10+2 lecturer in computer sciences..Syllabus for screening test 10+2 lecturer in computer sciences..
Syllabus for screening test 10+2 lecturer in computer sciences..Ashish Sharma
 
SE-IT DSA LAB SYLLABUS
SE-IT DSA LAB SYLLABUSSE-IT DSA LAB SYLLABUS
SE-IT DSA LAB SYLLABUSnikshaikh786
 
Measuring electronic resource availability final version
Measuring electronic resource availability final versionMeasuring electronic resource availability final version
Measuring electronic resource availability final versionSanjeet Mann
 
Towards a Comprehensive Machine Learning Benchmark
Towards a Comprehensive Machine Learning BenchmarkTowards a Comprehensive Machine Learning Benchmark
Towards a Comprehensive Machine Learning BenchmarkTuri, Inc.
 
CIS-(Data Structures and Algorithms)FALL2023.pdf
CIS-(Data Structures and Algorithms)FALL2023.pdfCIS-(Data Structures and Algorithms)FALL2023.pdf
CIS-(Data Structures and Algorithms)FALL2023.pdfShayanAamir2
 
Crushing, Blending, and Stretching Data
Crushing, Blending, and Stretching DataCrushing, Blending, and Stretching Data
Crushing, Blending, and Stretching DataRay Schwartz
 
Linked Open data: CNR
Linked Open data: CNRLinked Open data: CNR
Linked Open data: CNRDatiGovIT
 
Historical Evolution of RDBMS
Historical Evolution of RDBMSHistorical Evolution of RDBMS
Historical Evolution of RDBMSShailesh Pachori
 
Architecting Smarter Apps with Entity Framework
Architecting Smarter Apps with Entity FrameworkArchitecting Smarter Apps with Entity Framework
Architecting Smarter Apps with Entity FrameworkSaltmarch Media
 
Crushing, Blending, and Stretching Transactional Data
Crushing, Blending, and Stretching Transactional DataCrushing, Blending, and Stretching Transactional Data
Crushing, Blending, and Stretching Transactional DataRay Schwartz
 
B sc it syit sem 3 sem 4 syllabus as per mumbai university
B sc it syit sem 3 sem 4 syllabus as per mumbai universityB sc it syit sem 3 sem 4 syllabus as per mumbai university
B sc it syit sem 3 sem 4 syllabus as per mumbai universitytanujaparihar
 
Data Science & Big Data - Theory.pdf
Data Science & Big Data - Theory.pdfData Science & Big Data - Theory.pdf
Data Science & Big Data - Theory.pdfRAKESHG79
 
History of database processing module 1 (2)
History of database processing module 1 (2)History of database processing module 1 (2)
History of database processing module 1 (2)chottu89
 
Collaborative Similarity Measure for Intra-Graph Clustering
Collaborative Similarity Measure for Intra-Graph ClusteringCollaborative Similarity Measure for Intra-Graph Clustering
Collaborative Similarity Measure for Intra-Graph ClusteringWaqas Nawaz
 
Algoithems and data structures
Algoithems and data structuresAlgoithems and data structures
Algoithems and data structuresadamlongs1983
 

Similaire à 12111 data structure (20)

Databases for Storage Engineers
Databases for Storage EngineersDatabases for Storage Engineers
Databases for Storage Engineers
 
SE-IT DSA THEORY SYLLABUS
SE-IT DSA THEORY SYLLABUSSE-IT DSA THEORY SYLLABUS
SE-IT DSA THEORY SYLLABUS
 
Course module of DS
Course module of DSCourse module of DS
Course module of DS
 
Detailed syllabus
Detailed syllabusDetailed syllabus
Detailed syllabus
 
Syllabus for screening test 10+2 lecturer in computer sciences..
Syllabus for screening test 10+2 lecturer in computer sciences..Syllabus for screening test 10+2 lecturer in computer sciences..
Syllabus for screening test 10+2 lecturer in computer sciences..
 
SE-IT DSA LAB SYLLABUS
SE-IT DSA LAB SYLLABUSSE-IT DSA LAB SYLLABUS
SE-IT DSA LAB SYLLABUS
 
Measuring electronic resource availability final version
Measuring electronic resource availability final versionMeasuring electronic resource availability final version
Measuring electronic resource availability final version
 
Towards a Comprehensive Machine Learning Benchmark
Towards a Comprehensive Machine Learning BenchmarkTowards a Comprehensive Machine Learning Benchmark
Towards a Comprehensive Machine Learning Benchmark
 
CIS-(Data Structures and Algorithms)FALL2023.pdf
CIS-(Data Structures and Algorithms)FALL2023.pdfCIS-(Data Structures and Algorithms)FALL2023.pdf
CIS-(Data Structures and Algorithms)FALL2023.pdf
 
Crushing, Blending, and Stretching Data
Crushing, Blending, and Stretching DataCrushing, Blending, and Stretching Data
Crushing, Blending, and Stretching Data
 
Linked Open data: CNR
Linked Open data: CNRLinked Open data: CNR
Linked Open data: CNR
 
Historical Evolution of RDBMS
Historical Evolution of RDBMSHistorical Evolution of RDBMS
Historical Evolution of RDBMS
 
Architecting Smarter Apps with Entity Framework
Architecting Smarter Apps with Entity FrameworkArchitecting Smarter Apps with Entity Framework
Architecting Smarter Apps with Entity Framework
 
Crushing, Blending, and Stretching Transactional Data
Crushing, Blending, and Stretching Transactional DataCrushing, Blending, and Stretching Transactional Data
Crushing, Blending, and Stretching Transactional Data
 
B sc it syit sem 3 sem 4 syllabus as per mumbai university
B sc it syit sem 3 sem 4 syllabus as per mumbai universityB sc it syit sem 3 sem 4 syllabus as per mumbai university
B sc it syit sem 3 sem 4 syllabus as per mumbai university
 
Data Science & Big Data - Theory.pdf
Data Science & Big Data - Theory.pdfData Science & Big Data - Theory.pdf
Data Science & Big Data - Theory.pdf
 
History of database processing module 1 (2)
History of database processing module 1 (2)History of database processing module 1 (2)
History of database processing module 1 (2)
 
Collaborative Similarity Measure for Intra-Graph Clustering
Collaborative Similarity Measure for Intra-Graph ClusteringCollaborative Similarity Measure for Intra-Graph Clustering
Collaborative Similarity Measure for Intra-Graph Clustering
 
Ad
AdAd
Ad
 
Algoithems and data structures
Algoithems and data structuresAlgoithems and data structures
Algoithems and data structures
 

12111 data structure

  • 1. w.e.f. Academic Year 2009-10 ‘E’ Scheme Course Name : Computer Engineering Group Course Code : CO/CM/IF/CD Semester : Fourth Subject Title : Data Structure Subject Code : 12111 Teaching and Examination Scheme: Teaching Scheme Examination Scheme PAPER TH TU PR TH PR OR TW TOTAL HRS 03 -- 04 03 100 50# -- 25@ 175 NOTE: Two tests each of 25 marks to be conducted as per the schedule given by MSBTE. Total of tests marks for all theory subjects are to be converted out of 50 and to be entered in mark sheet under the head Sessional Work. (SW) Rationale: Data Structures is a subject of primary importance in Computer Science. Organizing or structuring data is important for implementation of efficient algorithms and program development. Efficient problem solving needs the application of appropriate data structures during program development. Objectives: Students will able to: 1. Understand different types of data structures. 2. Use the data structures stacks, queues, arrays, and lists in application programs. 3. Use the data structures trees, graphs in application programs. 4. Understand the applications of data structures in systems programming, database applications and programming languages. 5. Compare different implementations of data structures and to recognize the advantages and disadvantages of the different implementations. 6. Understand and apply sorting algorithms used in data structures such as bubble sort, insertion sort, selection sort, radix sort, merge sort and quick-sort. 7. Compare the efficiency of various sorting algorithms in terms of both time and space. MSBTE - Final Copy Dt. 01/04/2010 1 12111
  • 2. w.e.f. Academic Year 2009-10 ‘E’ Scheme Learning Structure: Application System Programming, Application Programming. Searching Sorting Data Access Data Storage Procedure Techniques Techniques Searching Sorting FIFO, LIFO Arrays, Stack, list, Principles Algorithms Algorithms Queue, Graph Bubble, Insert Delete, Linear, Physical, Base, Interchange, Push, Pop, Front, Binary, Virtual Concepts Merge, Bucket, Rear, Node, Hash Address. Radix, Techniques Pointers, data Storage Techniques Data in the form of text, audio, video Facts MSBTE - Final Copy Dt. 01/04/2010 2 12111
  • 3. w.e.f. Academic Year 2009-10 ‘E’ Scheme Contents: Theory Chapter Name of the Topic Hours Marks Introduction to data structure: 1.1 Data Representation • Abstract data Types • Data Structures (Linear and Non- Linear ) • Atomic Type 01 1.2 Data Types 02 08 • Primitive data type • Derived data type 1.3 Operations on data structures • Traversing, Inserting, Deleting • Searching and sorting Principles of programming and Analysis of Algorithms: 2.1 Algorithms 02 • Different approaches for designing an algorithm 02 06 • Complexity in terms of time and space • Big ‘O’ Notation Searching & Sorting: 3.1 Sorting • An Introduction • Efficiency of Sorting Algorithms 3.2 Sorting Techniques • Bubble Sort • Selection Sort • Insertion Sort 03 08 16 • Merge Sort • Radix Sort (only algorithm) • Shell Sort (only algorithm) • Quick Sort (only algorithm) 3.3 Searching • An Introduction • Linear search • Binary Search Stacks: 4.1 Introduction to Stacks • Stacks as an Abstract Data Type • Primitive operations of stacks 04 4.2 Representation of Stacks through Arrays 06 12 4.3 Application of Stacks • Stack machines • Recursion • Arithmetic expression: Polish Notation Queues: 5.1 Introduction • Queue as an Abstract Data Type 05 06 12 • Representation of Queues 5.2 Operations on queue : Searching ,Insertion, Deletion. 5.3 Types of queues MSBTE - Final Copy Dt. 01/04/2010 3 12111
  • 4. w.e.f. Academic Year 2009-10 ‘E’ Scheme • Circular Queues • Priority Queue • Dequeues 5.4 Application of Queues Linked List: 6.1 Introduction • Terminologies Node, Address, Pointer, Information, Next, Null pointer, Empty list etc. 6.2 Operations on list Searching, Insertion and Deletion 06 6.3 Types of lists 06 12 • Linear list • Circular list • Doubly list 6.4 Array, stacks, queues, implementation using list. Trees: 7.1 Introduction to Trees 7.2 Types of Trees • General tree • Binary tree • Height balanced • Weight balanced 07 10 18 • Binary search tree 7.3 Operations on Binary Search Tree • Insertion of node • Deletion of node • Traversal—Inorder, Preorder and Postorder • Searching-- Depth-first search and Breadth-first search Graphs: 8.1 Introduction • Terminology graph, node (vertices), arcs (edge), directed graph, in-degree, out-degree, adjacent, successor, predecessor, relation, weight, path, length 8.2 Sequential Representation of Graphs 08 06 12 8.3 Linked Representation of Graphs 8.4 Traversal of Graphs • Depth-first search • Breadth-first search 8.5 Shortest Path algorithm for graph 8.6 Application of Graph Hashing 09 9.1 Hash functions 02 04 9.2 Deleting items from hash tables Total 48 100 Practical: Skills to be developed: Intellectual skills: • Use of programming language constructs in program implementation. • To be able to apply different logics to solve given problem. MSBTE - Final Copy Dt. 01/04/2010 4 12111
  • 5. w.e.f. Academic Year 2009-10 ‘E’ Scheme • To be able to write program using different implementations for the same problem • Study different types of errors as syntax semantic, fatal, linker & logical • Debugging of programs • Understanding different steps to develop program such as Problem definition Analysis Design of logic Coding Testing Maintenance (Modifications, error corrections, making changes etc.) Selection of appropriate data structures Selection of appropriate sorting and searching techniques Motor skills: • Proper handling of Computer System. List of Practical: Sr.No. Practical 01 Programs based on: Array operations, insertion, deletion Programs for implementing various sorting techniques. 02 (Minimum three sorting techniques from topics mentioned in the syllabus)) Programs for implementing various sorting and searching techniques. 03 (Minimum two searching techniques from topics mentioned in the syllabus.) Programs based on Stacks 04 Implementation of PUSH & POP operations, Evaluate postfix expressions, Infix to postfix conversions. Recursive programs: factorial, fibonaci, Ackerman function, and tower of Hanoi. (Any 05 two) 06 Programs for demonstrating queue operations (Minimum two). 07 Two programs based on Linked lists Programs based on trees 08 Creating a binary tree, in order, preorder and post order traversal of binary tree, deleting a node from binary tree. 09 Assignments based on graph theory. 10 Program based on hashing Learning Resources: Sr. No. Author Title Publisher 01 ISRD Group New Dehli Data Structure Using C Tata McGraw Hill 02 Tremblie and Sorrenson Data Structures TMH Publications Teach Yourself data Structure 03 Lafore BPB Publication and Algorithms in 24 Hrs. 04 Tannenbaum Data Structures using C++ PHI Publication 05 Seymour Lipschutz Data Structures Tata McGraw Hill Books: MSBTE - Final Copy Dt. 01/04/2010 5 12111
  • 6. w.e.f. Academic Year 2009-10 ‘E’ Scheme MSBTE - Final Copy Dt. 01/04/2010 6 12111