Documents tagged with analysis and design of algorithms

ADA Final Submission (ADA Programs)

Name: Tanmay Baid Roll Number: 0829cs071112 Bubble Sort # include<stdio.h> # include<conio.h> void main() { int a[5], i, j, temp; clrscr(); printf("Enter 5 elements of array: "); for(i=0;i<5;i++) ...
  • tanmaybaid published this 05 / 22 / 2009
  • 258 reads
  • 0 comments

Ada Lab

PROGNO: 12.B/* Find the Binomial co-efficient using dynamic programming */ #include<iostream.h> ; #include<stdlib.h> #include<process.h> /* function for computing c(n,k) */ int bino_coefficient(int n...
  • jitulove published this 02 / 15 / 2009
  • 736 reads
  • 0 comments