Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public SLL brisi_pomali_od(int iznos) {
  2.  
  3. SLLNode nod1 = first;
  4. SLL lista = new SLL();
  5. SLLNode nod2 = lista.getFirst();
  6.  
  7. while(nod1 != null)
  8. {
  9. if(nod1.plata >= iznos)
  10. {
  11. lista.insertLast(nod1.id, nod1.plata);
  12. }
  13. nod1=nod1.succ;
  14. }
  15.  
  16.  
  17. return lista;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement