Skip to content

Instantly share code, notes, and snippets.

@quanganh2001
quanganh2001 / cpp
Created September 28, 2022 03:04
Queue data structure commercial website
#include <bits/stdc++.h>
using namespace std;
// customer class with variable custno as the customer serial no and k as the quantity that the customer will buy
class cust
{
public:
int custno;
int k;
};