Koding : // JUDUL = Phone Book dan Sort menggunakan Insertion Sorting //OLEH : RIZKY SYAH GUMELAR //TANGGAL : 9 APRIL 2022 // Kamus #include <iostream> //Include library iostream #include <conio.h> #include <math.h> //SQRT DAN POW Function #include <string.h> using namespace std ; //Shortcut Std library struct komponen_phone_book { string nama, nomor; }; int max_array; int batas (); void input ( int batas_array ); void cetak_phone_book ( int batas_array ); void name_sort ( int batas_array ); void num_sort ( int batas_array ); // Declare ADT ke sebuah variable struct komponen_phone_book phone_book[ 100 ]; //Deskripsi / Algoritma int main (){ //Panggil Function batas max_array = batas (); cout << endl; //Panggil Function Input input (max_array); //Cetak Sebelum Sorting cout << "============ Output Sebelum di Sorting ============" << endl; cetak_phone_book (max_array);