Created
July 10, 2012 03:53
-
-
Save vcwu/3080860 to your computer and use it in GitHub Desktop.
testing with one logical node
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Making a Testing Tree, with many physical, one logical obj. | |
| //------------------------------------------------ | |
| Treap<Student>* oneLogical = new Treap<Student>(); | |
| oneLogical->insert(smallest); | |
| for(int x = 0; x< 2; x++) | |
| { | |
| oneLogical->insert(allStudents[x]); | |
| oneLogical->remove(allStudents[x]); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment