UAS MK ALGO II 2023 22040109 UMI MAGHFIROH 2D

Поділитися
Вставка
  • Опубліковано 27 гру 2024

КОМЕНТАРІ • 2

  • @Boylanayak
    @Boylanayak 11 місяців тому

    ❤🎉

  • @umimaghfiroh17
    @umimaghfiroh17  Рік тому

    /*Nama : Umi Maghfiroh
    Kelas: 2D
    NIM : 22040109*/
    #include
    #include
    #include
    #include
    using namespace std;
    void gotoxy(int x, int y)
    {
    COORD coord;
    coord.X = x;
    coord.Y = y;
    SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
    }
    struct data_diri {
    string nama;
    int nim;
    string kelas;
    };
    void bubbleSort(float arr[], int n)
    {
    for (int i = 0; i < n - 1; i++) {
    for (int j = 0; j < n - i - 1; j++) {
    if (arr[j] > arr[j + 1]) {
    float temp = arr[j];
    arr[j] = arr[j + 1];
    arr[j + 1] = temp;
    }
    }
    }
    }
    int binarySearch(float arr[], int n, float key)
    {
    int left = 0;
    int right = n - 1;
    while (left kelas;
    gotoxy(0, 3); cout