Skip to content

vinayak-sethi/Design-and-Analysis-of-Algorithms-Practice

Repository files navigation

DAA

This repository consists of the lab work done as a part of a course 'Object Oriented Algorithm Design and Analysis Practice (COM210P)'.

Team Members:

    AKSHUN PRATAP DUBEY        - COE18B003  GITHUB Username  - akshundb  
    HRISHIKESH RAJESH MENON    - COE18B024  GITHUB Username  - RIESUBTYR  
    SAMARTH SUDARSHAN INAMDAR  - CED18I045  GITHUB Username  - samarth1612  
    MRIDUL HARISH              - CED18I034  GITHUB Username  - mridul21harish  
    VINAYAK SETHI              - COE18B061  GITHUB Username  - vinayak-sethi  
    SAI KAUSHIK SUDHAKARAN     - CED18I044  GITHUB Username  - thegamingbot  
    NIKUNJ MAHESHWARI          - CED18I038  GITHUB Username  - nikunj200 

Guide on running MakeFile for Lab 7 and Lab 8

To run the code enter the following in the the terminal for the respective directory (LAB 7, LAB 8)

  • Once in the directory, type make to compile the respective files.
  • Once file is made, type ./graph to run the program.
  • Once the file is run, type make clean to clean the directory.
  • exit the directory and proceed with next

Lab 1 :

         Discover three different logic for GCD(m,n), write iterative and recursive code

Lab 2 :

         1. Does there exist q and r in A such that p=q+r? (3 logics)            
         2. Identify the position of the first '-1' in array (3 logics)
         3. Print 5 patterns from given integer 'n

Lab 3 :

         1. Sort ternary array preserving stability (3 logics)
         2. Partition given integer array into two of equal size such that their respective sums are maximum.

Lab 4 :

         1. Given 'n' numbers, compute GCD using DC.   Similarly, LCD
         2. Count the number of 1's in a binary array using DC
         3. Count the number of negative numbers in an integer array using DC
         4. Implement Towers of Hanoi.
         5. Implement 2-way, 3-way merge sort.    

Lab 5 :

   Input:   Sorted Arrays; A1,...Ak    Question:  Sort union of A_i 's
         1. Incremental Design   ;  Sort(A_1,A_2), A_3), A_4,...
         2. Divide and Conquer  ;   Split k arrays into two sets of k/2 each.   Let this be done recursively until set size is 2.       
         3. Maintain k pointers,   Find MIN out of k elements pointed by the pointers and output MIN.
         4. Construct BST on union of A_i 's and perform inorder traversal
         5. Maintain a heap on k elements pointed by k pointers,  then extract MIN.
         6. Sorting 

Lab 6 :

         1. Primality check in O(nrootn).
         2. O((logn)^2) - own algo.
         3. Find k smallest elements using quicksort partition routine.
         4. Find minimum and maximum in 3n/2-2 comparisons
         5. Find minimum and maximum in 2n-3 comparisons.

Lab 7 :

         Make file Practice

Lab 8 :

       Module 1

         DFS(Graph G) -- choose start vertex arbitrarily and perform DFS
         DFS(Graph G, vertex s)
         DFS(Graph G, vertex s, vertex t) -- is t reachable from s

       Module 2

         BFS(Graph G)
         BFS(Graph G, vertex s)
         BFS(Graph G, vertex s, vertex t)

       Module 3
       
         BFS_SPATH(G,s,flag=0) -- returns spath in unweighted graphs
         BFS_SPATH(G,s,flag=1) -- returns spath in weighted graphs
         LPATH(Tree T, flag=0) - returns the longest path in T (undirected tree)
         LPATH(Tree T, flag=1) - returns the longest path in a DAG
         MAX_Weight_MST(Graph G)

       Module 4
      
         Test_bipartite(Graph G)
         Test_articulationpoints(Graph G)
         Test_bridges(Graph G)

       Module 5

          MST_Prim(Graph G)
          MST_Kruskal(Graph G)
          MST_youralgo(Graph G)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published