vuoi
o PayPal
tutte le volte che vuoi
#ifndef CODA_H
#define CODA_H
#include <iostream>
using namespace std;
typedef int T;
class Coda {
private:
static const int N=5;
T C[N];
int t;
int c;
int elem;
public:
Coda();
bool Push(const T &);
bool Pop(T &);
bool empty() const;
bool full() const;
void print() const;
void BubbleSort();
};
#endif