Advertisement
dzocesrce

[APS] Споредби без граници

Aug 28th, 2023
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 6.59 KB | None | 0 0
  1. //juni 2020 - termin 1
  2. //se sporeduvaat element od napred i od pozadi vo parovi po oddalecenost do sredina, taka sto se dodava nivniot zbir na pocetok, pa se dodava pogolemiot od dvata broja do nego i potoa se brisi prviot broj. Nez poubo da objasnam razgledaj spored test cases auf
  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 KashaPopara {
  193.     public static void funkcija(DLL<Integer> list){
  194.         DLLNode<Integer> front= list.getFirst();
  195.         DLLNode<Integer> rear= list.getLast();
  196.         DLLNode<Integer> prev= list.getFirst();
  197.         int sum=0;
  198.         while(front!=rear){
  199.             //System.out.println(list);
  200.             prev=front;
  201.             sum= front.element+rear.element;
  202.             list.insertBefore(sum,front);
  203.             if(front.element> rear.element){
  204.                 list.insertBefore(front.element,front);
  205.             }
  206.             else{
  207.                 list.insertBefore(rear.element,front);
  208.             }
  209.             prev=prev.pred;
  210.             //System.out.println(list);
  211.             list.delete(front);
  212.             front=prev.succ;
  213.             if(rear==null) break;
  214.             rear=rear.pred;
  215.             //System.out.println(front+" "+rear);
  216.             if(front==rear.pred){
  217.                 sum= front.element+rear.element;
  218.                 list.insertBefore(sum,front);
  219.                 if(front.element> rear.element){
  220.                     list.insertBefore(front.element,front);
  221.                 }
  222.                 else{
  223.                     list.insertBefore(rear.element,front);
  224.                 }
  225.                 list.delete(front);
  226.                 break;
  227.             }
  228.         }
  229.     }
  230.     public static void main(String[] args) {
  231.         Scanner input= new Scanner(System.in);
  232.         int n= Integer.parseInt(input.nextLine());
  233.         String[] broevi= input.nextLine().split("\\s+");
  234.         DLL<Integer> lista= new DLL<>();
  235.         for(int i=0;i<n;i++){
  236.             lista.insertLast(Integer.parseInt(broevi[i]));
  237.         }
  238.         funkcija(lista);
  239.         System.out.println(lista);
  240.     }
  241. }
  242. /*
  243. 6
  244. 1 5 7 12 2 6
  245. 7<->6<->7<->5<->19<->12<->12<->2<->6
  246.  
  247. 5
  248. 10 4 5 3 6
  249. 16<->10<->7<->4<->5<->3<->6
  250. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement