Skip to content

Instantly share code, notes, and snippets.

View Hoseratti's full-sized avatar

Jose Imanuel Stanley Wijaya Hoseratti

View GitHub Profile
@Hoseratti
Hoseratti / Waiting List
Created April 15, 2026 03:53
Waiting list based on C++ ASD
#include <iostream>
using namespace std;
struct Mahasiswa {
string nama;
int kelompok;
Mahasiswa* next;
};
// ================= LINKED LIST =================