Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void ReprDoc:: retiramenores(int n){
- if(!doc.vazia()){
- FreqPalav x;
- retiramenores(n, 1, x)
- }else
- cout<<"Não existe elementos na Lista" <<endl;
- }
- void ReprDoc::retiramenores(int n, int k, FrequPalav x){
- doc.encontra(k,x);
- if(x){
- if(x.getCont()<n){
- doc.remove(k,x);
- retiramenore(n,(k+1),x);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment