Showing posts with the label ds

Heap Sort Program in C

#include<stdio.h> #include<limits.h> int heap[1000000], heapSize; v…

Bucket sort program in c

#include <stdio.h> int main() {     int num, N[10], x, y, z, temp;     pr…

Balloon sort program in c

#include <stdio.h> int main() {     int num, N[10], x, y, z, temp;     pr…

Bubble sort program in c

Bubble sort program in c  #include <stdio.h> int main() {     int array[…

Load More That is All