public
Description: Homework assignments for CSC 393 Data Structures In C++.
Clone URL: git://github.com/josh/csc_393.git
Fixed bug in OrderVector#remove that added elements back to the list.
josh (author)
Mon Apr 14 16:30:21 -0700 2008
commit  347d6ee88fba997f704251afec0b936f8be24fa7
tree    377ed1eec97b3d499fa54b07be8d627a9fc11802
parent  38787aa4fdfa633e3d25ed5b376f6cdebe382902
...
60
61
62
63
64
65
66
...
60
61
62
 
63
64
65
0
@@ -60,7 +60,6 @@ public:
0
         orderedVector.erase(orderedVector.begin()+j, orderedVector.begin()+j+1);
0
       }
0
     }
0
- orderedVector.push_back(i);
0
   }
0
 
0
   // operator[], that is, overload the [] operator so that one can directly

Comments

    No one has commented yet.