Advertisement
dzocesrce

[APS] Rotate List K Times

Sep 4th, 2023
629
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5.50 KB | None | 0 0
  1. //septemvri 2023...
  2. //ova e termin 2, a termin 1 e isto samo rotiranjeto e nadesno.
  3. import java.util.Scanner;
  4. class DLLNode<E> {
  5.     protected E element;
  6.     protected DLLNode<E> pred, succ;
  7.  
  8.     public DLLNode(E elem, DLLNode<E> pred, DLLNode<E> succ) {
  9.         this.element = elem;
  10.         this.pred = pred;
  11.         this.succ = succ;
  12.     }
  13.  
  14.     @Override
  15.     public String toString() {
  16.         return element.toString();
  17.     }
  18. }
  19.  
  20. class DLL<E> {
  21.     private DLLNode<E> first, last;
  22.  
  23.     public DLL() {
  24.         // Construct an empty SLL
  25.         this.first = null;
  26.         this.last = null;
  27.     }
  28.  
  29.     public void deleteList() {
  30.         first = null;
  31.         last = null;
  32.     }
  33.  
  34.     public int length() {
  35.         int ret;
  36.         if (first != null) {
  37.             DLLNode<E> tmp = first;
  38.             ret = 1;
  39.             while (tmp.succ != null) {
  40.                 tmp = tmp.succ;
  41.                 ret++;
  42.             }
  43.             return ret;
  44.         } else
  45.             return 0;
  46.  
  47.     }
  48.  
  49.     public DLLNode<E> find(E o) {
  50.         if (first != null) {
  51.             DLLNode<E> tmp = first;
  52.             while (tmp.element != o && tmp.succ != null)
  53.                 tmp = tmp.succ;
  54.             if (tmp.element == o) {
  55.                 return tmp;
  56.             } else {
  57.                 System.out.println("Elementot ne postoi vo listata");
  58.             }
  59.         } else {
  60.             System.out.println("Listata e prazna");
  61.         }
  62.         return first;
  63.     }
  64.  
  65.     public void insertFirst(E o) {
  66.         DLLNode<E> ins = new DLLNode<E>(o, null, first);
  67.         if (first == null)
  68.             last = ins;
  69.         else
  70.             first.pred = ins;
  71.         first = ins;
  72.     }
  73.  
  74.     public void insertLast(E o) {
  75.         if (first == null)
  76.             insertFirst(o);
  77.         else {
  78.             DLLNode<E> ins = new DLLNode<E>(o, last, null);
  79.             last.succ = ins;
  80.             last = ins;
  81.         }
  82.     }
  83.  
  84.     public void insertAfter(E o, DLLNode<E> after) {
  85.         if(after==last){
  86.             insertLast(o);
  87.             return;
  88.         }
  89.         DLLNode<E> ins = new DLLNode<E>(o, after, after.succ);
  90.         after.succ.pred = ins;
  91.         after.succ = ins;
  92.     }
  93.  
  94.     public void insertBefore(E o, DLLNode<E> before) {
  95.         if(before == first){
  96.             insertFirst(o);
  97.             return;
  98.         }
  99.         DLLNode<E> ins = new DLLNode<E>(o, before.pred, before);
  100.         before.pred.succ = ins;
  101.         before.pred = ins;
  102.     }
  103.  
  104.     public E deleteFirst() {
  105.         if (first != null) {
  106.             DLLNode<E> tmp = first;
  107.             first = first.succ;
  108.             if (first != null) first.pred = null;
  109.             if (first == null)
  110.                 last = null;
  111.             return tmp.element;
  112.         } else
  113.             return null;
  114.     }
  115.  
  116.     public E deleteLast() {
  117.         if (first != null) {
  118.             if (first.succ == null)
  119.                 return deleteFirst();
  120.             else {
  121.                 DLLNode<E> tmp = last;
  122.                 last = last.pred;
  123.                 last.succ = null;
  124.                 return tmp.element;
  125.             }
  126.         }
  127.         // else throw Exception
  128.         return null;
  129.     }
  130.  
  131.     public E delete(DLLNode<E> node) {
  132.         if(node==first){
  133.             deleteFirst();
  134.             return node.element;
  135.         }
  136.         if(node==last){
  137.             deleteLast();
  138.             return node.element;
  139.         }
  140.         node.pred.succ = node.succ;
  141.         node.succ.pred = node.pred;
  142.         return node.element;
  143.  
  144.     }
  145.  
  146.     @Override
  147.     public String toString() {
  148.         String ret = new String();
  149.         if (first != null) {
  150.             DLLNode<E> tmp = first;
  151.             ret += tmp + "<->";
  152.             while (tmp.succ != null) {
  153.                 tmp = tmp.succ;
  154.                 if(tmp.succ==null){
  155.                     ret+=tmp;
  156.                     break;
  157.                 }
  158.                 ret += tmp + "<->";
  159.             }
  160.         } else
  161.             ret = "Prazna lista!!!";
  162.         return ret;
  163.     }
  164.  
  165.     public String toStringR() {
  166.         String ret = new String();
  167.         if (last != null) {
  168.             DLLNode<E> tmp = last;
  169.             ret += tmp + "<->";
  170.             while (tmp.pred != null) {
  171.                 tmp = tmp.pred;
  172.                 ret += tmp + "<->";
  173.             }
  174.         } else
  175.             ret = "Prazna lista!!!";
  176.         return ret;
  177.     }
  178.  
  179.     public DLLNode<E> getFirst() {
  180.         return first;
  181.     }
  182.  
  183.     public DLLNode<E> getLast() {
  184.  
  185.         return last;
  186.     }
  187.  
  188.     public void izvadiDupliIPrebroj(){
  189.  
  190.     }
  191. }
  192. public class RotateLeftDLL {
  193.     public static void rotate_left(DLL<Integer> list, int k){
  194.         DLLNode<Integer> temp= list.getFirst();
  195.         int counter=0;
  196.         while(counter<k){
  197.             list.insertLast(temp.element);
  198.             temp=temp.succ;
  199.             list.deleteFirst();
  200.             counter++;
  201.         }
  202.     }
  203.     public static void main(String[] args) {
  204.         Scanner input= new Scanner(System.in);
  205.         int n= Integer.parseInt(input.nextLine());
  206.         DLL<Integer> list= new DLL<>();
  207.         String[] broevi_list1= input.nextLine().split("\\s+");
  208.         for(int i=0;i<n;i++){
  209.             list.insertLast(Integer.parseInt(broevi_list1[i]));
  210.         }
  211.         int k= Integer.parseInt(input.nextLine());
  212.         rotate_left(list,k);
  213.         System.out.println(list.toString());
  214.     }
  215. }
  216. /*
  217. 5
  218. 1 2 3 4 5
  219. 1
  220. 2<->3<->4<->5<->1
  221.  
  222. 5
  223. 1 2 3 4 5
  224. 5
  225. 1<->2<->3<->4<->5
  226.  
  227. 5
  228. 2 4 6 8 10
  229. 3
  230. 8<->10<->2<->4<->6
  231.  */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement