    List of  C programs and their  source code names
    ---------------------------------------------


     Program purpose                        File name
     ---------------                        ----------    
Post fix to infix conversion                POSTIN.C
Mergesort                                   MSORT.C
Polynomial addition using GLL               GLPADD.C
Merging the two sorted files                MFILE.C
Postfix expression evaluation               POST.C
Finding the depth of binary tree            DEPTH.C
Counting the number of leaves in binary tree LEAVES.C
Finding the mirror image of the binary tree MIRROR.C
Finding the shortest path                   SHORT.C
Bubble sort (Improved version)              BUBB2.C
Simple bubble sort                          BUBBLE1.C
Circular queue using array                  CIRQ.C
Binary search                               BIN.C
Program on AVL tree                         AVL.C
Circular queue using linked lisr            CQLINK.C
Doubly linked list                          DLL.C
Fibonacci search                            FIB2.C
Heapsort                                    HEAPS.C
Finding largest element from array          LARGE_AR.C
Finding largest element from the matrix     LARGE_MA.C
Sequential search                           LINS.C
Adition of polynomials using linked list    PADDL.C
Addition of polynomial using linked list (2)PADDL2.C
Polynomial addition using arrays            POLARR.C
Postfix expression evaluation               POST1.C
Polynomial representation using array
                                strucure    POL_ARR_.C
Minimum spanning tree using PRIM's algorithm PRIMS.C
Queue using linked list                     QLINK.C
Quick sort program                          QUCIK_S.C
Selection sorting technique                 SELECT_S.C
Sequential search                           SEQ_SEAR.C
Primitive operations on sequential file     SEQ_FILE.C
Linked list implementation                  LINK_LIS.C
Addition of two sparce matrices             SPARSE_A.C
Cirular linked list                         CIRC_LL.C
Primitive operations on indexed sequential  IND_SEQ.C
                                File
Circular queue using array                  CQ_ARR.C
Queue using arrays                          LQ_ARR.C
queue using linked list                     Q_LINK.C
Graph traversal using BFS                   BFS.C
		(corresponding header file) BFS.h
Graph traversal using DFS                   DFS.C
		(corresponding header file) DFS.h
Creation of simple binary tree              SIMPLETR.C
Operations on threaded binary tree          THRTREE.C
Implementation of binary search tree        BIN_TREE.C
Conversion of infix to postfix noattion     INTOPO.C

List of programs (additional in C)
---------------------------------

Program purpose                            File name
---------------                            ---------
Postfix to infix conversion                 POSTIN.C
Merge sort                                  MSORT.C
Polynomial addition using GLL               GLPADD.C
Merging the two sorted files                MFILE.C
Evaluation of postfix expression            POST.C
Finding the depth of binary tree            DEPTH.C
Finding the number of leaves                LEAVES.C
AVL tree operations                         AVL.C
Finding the mirror image of tree            MIRROR.C
PRIM's algorithm                            PRIM.C
shortest path using Dijkstra's algorithm    SHORT.C
Prefix to postfix expression conversion     PRE_POST.C
Graph coloring using backtrack method       GCOLOR.C
