Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #pragma once
  2. #include <vector>
  3. #include <iostream>
  4. #include "Noeud.h"
  5.  
  6. using namespace std;
  7.  
  8. class RN_arbre
  9. {
  10. public:
  11. RN_arbre();
  12. RN_arbre(vector<int> tableau);
  13. ~RN_arbre();
  14. void affiche();
  15. void arbre_inserer(int i);
  16. void inserer_correction_rn(Noeud* n);
  17. int lire_rang(int x);
  18. Noeud trouve_noeud(int i);
  19. Noeud* nil; // TODO
  20. Noeud *root;
  21.  
  22.  
  23.  
  24. private:
  25. Noeud minimum;
  26. Noeud maximum;
  27.  
  28. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement