Advertisement
Guest User

heda

a guest
Mar 29th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3. typedef struct{
  4. char string1[50];
  5. char string2[50];
  6. int vokalkons;
  7. }bungkusan;
  8.  
  9. int pasanganvokons(char pasangan[50]); //fungsi untuk proses konsonan - vokal string1
  10. int pasanganvokons2(char pasangan2[50]); //fungsi untuk proses konsonan - vokal string1
  11. void insertionsort(int n, bungkusan* arr); //sorting insertion
  12. void selectionsort(int n, bungkusan* arr); //sorting selection
  13. void quickSort(int n, bungkusan* tabInt,int l, int r); //sorting quicksort
  14. void bubblesort(int n, bungkusan* tabInt); //sorting bubblesort
  15. void Merge(bungkusan* data1, bungkusan* data2, bungkusan* berurut,int n,int m); //prosedur menyatukan data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement