Advertisement
techno-

Circular

Nov 4th, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.92 KB | None | 0 0
  1. package e2;
  2.  
  3. import java.util.Iterator;
  4. import java.util.List;
  5.  
  6.  
  7. public class Circular implements Iterator<String>{
  8.     private List<String> lista;
  9.  
  10.     public void setK(int k) {
  11.         this.k = k;
  12.     }
  13.  
  14.     public int getK() {
  15.         return k;
  16.     }
  17.  
  18.     private int k;
  19.     private int pos= 0;
  20.     private int poscorrecta;
  21.  
  22.     public Circular(List<String> lista, int k){
  23.         this.lista=lista;
  24.         this.k=k;
  25.     }
  26.  
  27.  
  28.     @Override
  29.     public boolean hasNext() {
  30.         if (lista.size()>1){
  31.             return true;
  32.         } else return false;
  33.     }
  34.  
  35.     @Override
  36.     public String next() {
  37.         pos=pos+k-1;
  38.         poscorrecta = pos % lista.size();
  39.         String resultado = lista.get(poscorrecta);
  40.  
  41.         return resultado;
  42.     }
  43.  
  44.     @Override
  45.     public void remove() {
  46.         lista.remove(poscorrecta);
  47.         if(pos> lista.size()){
  48.             pos=0;
  49.         }
  50.     }
  51. }
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement