Showing posts with label c program. Show all posts

C program for Huffman's Algorithm



Huffman's Algorithm




Huffman's Algorithm


C program for Dijkstra's Algorithm



Dijkstra's Algorithm




Dijkstra's Algorithm


How to run Turbo c full screen in windows 7 without any software



I know u most aware with turbo c language.This compiler is easily full screened with XP.
But we can not use it in full screen in win 7 and win vista.
so we need software having name dosbox for that.but in this trick i will just give instruction how to make Turbo C in Full screen without any software



I know u most aware with turbo c language.This compiler is easily full screened with XP.
But we can not use it in full screen in win 7 and win vista.
so we need software having name dosbox for that.but in this trick i will just give instruction how to make Turbo C in Full screen without any software

C Program for operations on a queue represented using circular linked list


/* Program for showing various operations on a queue  represented
   using circular linked list. */.


/* Program for showing various operations on a queue  represented
   using circular linked list. */.

c program for Conversion of an expression from prefix into infix and postfix


/*Conversion of an expression from prefix into infix
  Conversion of an expression from prefix into postfix
*/


/*Conversion of an expression from prefix into infix
  Conversion of an expression from prefix into postfix
*/

C program for Conversion of an expression from postfix into infix and vice verse


/*Conversion of an expression from postfix into infix
  Conversion of an expression from postfix into prefix
*/


/*Conversion of an expression from postfix into infix
  Conversion of an expression from postfix into prefix
*/

C program for all infix and postfix operation

/* program for conversion of:
             1. infix into its postfix form
             2. infix into its prefix form
             3. Evaluation of postfix expression
             4. Evaluation of prefix expression
   operators supported '+,-,*,/,%,^,(,)
   operands supported -- all single character operands
*/

/* program for conversion of:
             1. infix into its postfix form
             2. infix into its prefix form
             3. Evaluation of postfix expression
             4. Evaluation of prefix expression
   operators supported '+,-,*,/,%,^,(,)
   operands supported -- all single character operands
*/

C program for Polynomal using a circular linked list


/*
 Represent a Polynomal using a circular linked list and write
 menu driven program to perform addition,multiplication and
 evaluation.
*/


/*
 Represent a Polynomal using a circular linked list and write
 menu driven program to perform addition,multiplication and
 evaluation.
*/

C program to merge linked lists with sorted data


/*Merging of linked lists with sorted data */
/* prgram :
   Create two singly linked lists sort one after creation & one while
   creation.Merge these two lists into one list without creating a
   new node*/


/*Merging of linked lists with sorted data */
/* prgram :
   Create two singly linked lists sort one after creation & one while
   creation.Merge these two lists into one list without creating a
   new node*/

C program for Operations on SLL(singly linked list)


/*Operations on SLL(singly linked list) */


/*Operations on SLL(singly linked list) */

C program for Operations on a CDLL(Circular doubly linked list)

/*Operations on a CDLL(Circular doubly linked list) */

/*Operations on a CDLL(Circular doubly linked list) */

c program for sparse matrix using array


/*Represent sparse matrix using array and perform matrix addition,simple
  transpose and fast transpose */


/*Represent sparse matrix using array and perform matrix addition,simple
  transpose and fast transpose */

C program for operations on polynomials using structures

/* Various operations on polynomials using structures. */

/* Various operations on polynomials using structures. */

C Program for various searching method

/*Program for various searching methods */

/*Program for various searching methods */

C program for Quick sort and Mege sort using recursion

/*Implement Quick sort and Mege sort using recursion        */


/*Implement Quick sort and Mege sort using recursion        */


C Program for Operations on a database

/*Program for  Operations on a database */
/* Program details:
 Various operations like read,insert,delete,print,sort,modify for student database
*/

/*Program for  Operations on a database */
/* Program details:
 Various operations like read,insert,delete,print,sort,modify for student database
*/

C program for sorting methods using functions

/*Implement sorting methods using functions - bubble sort, selection sort 
  insertion sort and shell sort. 
*/

/*Implement sorting methods using functions - bubble sort, selection sort 
  insertion sort and shell sort. 
*/

C Program for Matrix operations with pointers



/* Program for  Matrix  operations with pointers */
/* Prgram Details :
  Operations covered :
      1) Create()     : for creating and reading m x n elements
                in the given matrix
      2) print()      : diaplays the given matrix
      3) Transpose()  : Creates transpose of the given square matrix
      4) addmat()     : adds two matrices and returns the resultant matrix
      5) multmat()    : multipiles two matrices and returns the resultant matrix
      6) saddle()     : checks whether the given matrix has a saddle point
      7) Magic()      : Checks whether the given matrix is a magic square
      8) Inverse()    : Finds the inverse of the matrix
*/


/* Program for  Matrix  operations with pointers */
/* Prgram Details :
  Operations covered :
      1) Create()     : for creating and reading m x n elements
                in the given matrix
      2) print()      : diaplays the given matrix
      3) Transpose()  : Creates transpose of the given square matrix
      4) addmat()     : adds two matrices and returns the resultant matrix
      5) multmat()    : multipiles two matrices and returns the resultant matrix
      6) saddle()     : checks whether the given matrix has a saddle point
      7) Magic()      : Checks whether the given matrix is a magic square
      8) Inverse()    : Finds the inverse of the matrix
*/

C Program for String operations with library functions


/*Program for  String operations with library functions */


/*Program for  String operations with library functions */

C Program for String operations without library functions


/*Program for String operations without library functions */
/* Program details:
   Program showing various operations on string without library functions
   functions implemented:
   (1) Length of a string
   (2) Reversing a string
   (3) Palindrome
   (4) Copy
   (5) String comparison
   (6) String concatenations
   (7) Searching a string
   (8) Counting of Words,Characters and Special characters
 */


/*Program for String operations without library functions */
/* Program details:
   Program showing various operations on string without library functions
   functions implemented:
   (1) Length of a string
   (2) Reversing a string
   (3) Palindrome
   (4) Copy
   (5) String comparison
   (6) String concatenations
   (7) Searching a string
   (8) Counting of Words,Characters and Special characters
 */