Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "library.h"
- #include <iostream>
- #include <fstream>
- using namespace std;
- int main()
- {
- ifstream input("input.txt");
- Tree A;
- double x;
- while (!input.eof()) {
- input >> x;
- A.Add(x);
- }
- cout << A.GetMaxElementCount();
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement