struct Interval { int start; int end; Interval() : start(0), end(0) {} Interval(int s, int e) : start(s), end(e) {} };
I understood int start and int end but can anyone please describe what other two things represent.
int start
int end
Aucun commentaire:
Enregistrer un commentaire