সাক্ষাত্কারের প্রশ্ন: নতুন নোড তৈরি না করে দুটি বাছাই করা এককভাবে সংযুক্ত তালিকাগুলি মার্জ করুন


83

এটি একটি সাক্ষাত্কারের জন্য লিখিত পরীক্ষার সময় জিজ্ঞাসা করা একটি প্রোগ্রামিং প্রশ্ন। "আপনার দু'টি এককভাবে সংযুক্ত তালিকাগুলি ইতিমধ্যে বাছাই করা আছে, আপনাকে সেগুলি একীভূত করতে হবে এবং কোনও নতুন অতিরিক্ত নোড তৈরি না করেই নতুন তালিকার শীর্ষস্থানীয় ফিরিয়ে দিতে হবে The ফেরত তালিকাটিও বাছাই করা উচিত"

পদ্ধতির স্বাক্ষরটি হ'ল: নোড মার্জলিস্ট (নোড তালিকা 1, নোড তালিকা 2);

নোড শ্রেণি নীচে:

class Node{
    int data;
    Node next;
}

আমি অনেকগুলি সমাধানের চেষ্টা করেছি কিন্তু একটি অতিরিক্ত নোড স্ক্রু জিনিস তৈরি করি না। সাহায্য করুন.

এখানে অনুষঙ্গী ব্লগ এন্ট্রি http://techieme.in/merging-two-sorted-singly-linked-list/


তালিকা 1 থেকে শেষ উপাদানটি তালিকা 2 থেকে প্রথম উপাদানের চেয়ে ছোট?
পিয়ের-আলেকজান্দ্রে বাউচার্ড

দয়া করে নোট করুন: আমি স্ট্যাকওভারফ্লো / সিকিউশনস /2348374/merging-two-sorted-ist তালিকাগুলিতেও একটি সমাধান পেয়েছি তবে এটি যখন অসীম লুপে চালায়।
ধরম

@ পিয়ার: এটি যে কোনও কিছু হতে পারে। দুটি তালিকা পৃথকভাবে বাছাই করা হয় এবং কোড অবশ্যই একটি তৃতীয় তালিকা উত্পাদন করে যা বাছাই করা হয়।
ধরম

এটি কারণ কারণ যদি তালিকা 1 এর শেষ উপাদানটি তালিকা 2 এর প্রথম উপাদানের চেয়ে ছোট হয় তবে আপনি কেবলমাত্র পরবর্তী নোডটিকে প্রথম তালিকা 2 প্রধান নোডে পরিবর্তন করতে পারেন।
পিয়ের-আলেকজান্দ্রে বাউচার্ড

4
@ পিয়ার-অ্যালেক্সান্দ্রেবাউচার্ড আপনি কী ধরণের ইনপুট পাবেন সে সম্পর্কে এটি অত্যন্ত আশাবাদী।
হান্টার ম্যাকমিলেন

উত্তর:


190
Node MergeLists(Node list1, Node list2) {
  if (list1 == null) return list2;
  if (list2 == null) return list1;

  if (list1.data < list2.data) {
    list1.next = MergeLists(list1.next, list2);
    return list1;
  } else {
    list2.next = MergeLists(list2.next, list1);
    return list2;
  }
}

115
ইচ্ছামত দীর্ঘ তালিকাতে পুনরাবৃত্তি হ'ল স্ট্যাক ওভারফ্লোর জন্য একটি রেসিপি। তবে আমার ধারণা এটি স্ট্যাক ওভারফ্লো। আহা, বিড়ম্বনা! ;-)
অ্যাড্রিয়ান ম্যাকার্থি

কুল খাসির সমাধান! আমি জেনেরিক ব্যবহার করে এই কোডটিকে জাভাতে রূপান্তর করেছি। কোড এখানে ব্যাখ্যা git.io/-DkBuA পরীক্ষার কেসগুলির সাথে একই ভান্ডারে অন্তর্ভুক্ত রয়েছে।
অমিত শর্মা

@ স্টেফানহাউস্টাইন এই ফাংশনের রিটার্নের ধরনটি কী বাতিল ছিল? আমি কীভাবে এটি সংশোধন করব?
hyperbkcb

@ ডেনাইজ আমি নিশ্চিত না যে আমি প্রশ্নটি বুঝতে পেরেছি ... আপনি যদি একটি অকার্যকর ফাংশন চান তবে আপনি সম্ভবত ফলাফলের প্রারম্ভ নোড হিসাবে তালিকার 1 এর সূচনা নোডটি রাখতে চান এবং সর্বদা তালিকা 2 কে তালিকায় একত্রীকরণ করতে চান that কেস, list2.data বড় হলে আপনি ডেটা ফিল্ড অদলবদল করতে পারেন। তারপরে list2.data সর্বদা list1.data এর চেয়ে বড় এবং আপনি list1.next এবং list2 দিয়ে পুনরাবৃত্তি করতে পারেন
স্টিফান হস্টেইন

এখানে পুনরাবৃত্ত এবং পুনরাবৃত্ত সমাধানের জন্য রান টাইম জটিলতা বা হাইপ্প্পসিসিবি @ দ্বারা প্রস্তাবিত রূপটি হ'ল ও (এন)।
স্টিফান হস্টেইন

115

নতুন নোড বরাদ্দ এড়াতে পুনরাবৃত্তি প্রয়োজন হবে না:

Node MergeLists(Node list1, Node list2) {
  if (list1 == null) return list2;
  if (list2 == null) return list1;

  Node head;
  if (list1.data < list2.data) {
    head = list1;
  } else {
    head = list2;
    list2 = list1;
    list1 = head;
  }
  while(list1.next != null) {
    if (list1.next.data > list2.data) {
      Node tmp = list1.next;
      list1.next = list2;
      list2 = tmp;
    }
    list1 = list1.next;
  } 
  list1.next = list2;
  return head;
}

4
একটি সাক্ষাত্কারে, আপনি সাধারণত পরিচ্ছন্নতম / সংক্ষিপ্ত / সবচেয়ে মার্জিত সমাধানের সাথে শুরু করতে চান যা মানদণ্ডগুলি পূরণ করে এবং তারপরে উন্নতি করতে চান - বিশেষত, যদি আপনার ঝুঁকি থাকে অন্যথায় অন্যথায় সময় শেষ হতে পারে।
স্টিফান হস্টেইন

4
@ সোনডো এটি গ্রহণযোগ্য উত্তরটি বেছে নেওয়ার জন্য ওপিএসের পূর্বপরিকল্পনা। এবং উত্তরটি বেছে নেওয়া হয়েছে তাতে কোনও ভুল নেই। আপনি যদি মনে করেন এটি গ্রহণযোগ্য উত্তর হওয়া উচিত তবে আপনি এটির জন্য ভোট দিতে পারেন।
নিখিল

হেড করার কি দরকার = list2; list2 = list1; list1 = মাথা; আমরা কেবল মাথা = তালিকা 2 নির্ধারণ করতে পারি না;
বিক্রম সায়নী

এই ক্ষেত্রে, list1.next এ্যাসাইনমেন্টটি মাথা থেকে সংযোগ বিচ্ছিন্ন হয়ে যাবে। তালিকাগুলি মূলত তালিকা 1 এ একত্রিত হয়। এটি লুপের মধ্যে অদলবদল কীভাবে কাজ করে তার সমান।
স্টিফান হস্টেইন

4
আমার মনে হয় if (list1.next == null) list1.next = list2;ঠিক হতে পারে list1.next = list2;। যেহেতু while (list1.next != null)লুপটি সবে শেষ হয়েছে আমরা নিশ্চিত হতে পারি list1.next == null
জন বি

12
Node MergeLists(Node node1, Node node2)
{
   if(node1 == null)
      return node2;
   else (node2 == null)
      return node1;

   Node head;
   if(node1.data < node2.data)
   {
      head = node1;
      node1 = node1.next;
   else
   {
      head = node2;
      node2 = node2.next;
   }

   Node current = head;
   while((node1 != null) ||( node2 != null))
   {
      if (node1 == null) {
         current.next = node2;
         return head;
      }
      else if (node2 == null) {
         current.next = node1;
         return head;
      }

      if (node1.data < node2.data)
      {
          current.next = node1;
          current = current.next;

          node1 = node1.next;
      }
      else
      {
          current.next = node2;
          current = current.next;

          node2 = node2.next;
      }
   }
   current.next = NULL // needed to complete the tail of the merged list
   return head;

}

4
লুপটি "বা" শর্তে চালানো উচিত
শাহজাহান খান

4

দুইটি বাছাইযুক্ত লিঙ্কযুক্ত তালিকাগুলি A এবং B কে কীভাবে মার্জ করবেন সে সম্পর্কে এখানে অ্যালগরিদম রয়েছে:

while A not empty or B not empty:
   if first element of A < first element of B:
      remove first element from A
      insert element into C
   end if
   else:
      remove first element from B
      insert element into C
end while

এখানে সি আউটপুট তালিকা হবে।


4
আপনি যদি নতুন নোড তৈরি করে থাকেন তবে এটি কেবল সম্ভব। প্রশ্নটি নতুন নোড তৈরির ক্ষেত্রে সীমাবদ্ধ করে।
ধরম

4
আপনার নাল পরীক্ষা করা দরকার কারণ এটি A বা B খালি থাকবে। এটি করার আরেকটি উপায় হ'ল A খালি না হওয়া অবধি লুপ করা এবং খ খালি নয়
দেজেল

4

মা দেখুন, কোন পুনরাবৃত্তি!

struct llist * llist_merge(struct llist *one, struct llist *two, int (*cmp)(struct llist *l, struct llist *r) )
{
struct llist *result, **tail;

for (result=NULL, tail = &result; one && two; tail = &(*tail)->next ) {
        if (cmp(one,two) <=0) { *tail = one; one=one->next; }
        else { *tail = two; two=two->next; }
        }
*tail = one ? one: two;
return result;
}

2

নীচে হিসাবে Iteration করা যেতে পারে। জটিলতা = O (n)

public static LLNode mergeSortedListIteration(LLNode nodeA, LLNode nodeB) {
    LLNode mergedNode ;
    LLNode tempNode ;      

    if (nodeA == null) {
        return nodeB;
      } 
      if (nodeB == null) {
        return nodeA;
      }     


    if ( nodeA.getData() < nodeB.getData())
    {
        mergedNode = nodeA;
        nodeA = nodeA.getNext();
    }
    else
    {
        mergedNode = nodeB;
        nodeB = nodeB.getNext();
    }

    tempNode = mergedNode; 

    while (nodeA != null && nodeB != null)
    {           

        if ( nodeA.getData() < nodeB.getData())
        {               
            mergedNode.setNext(nodeA);
            nodeA = nodeA.getNext();
        }
        else
        {
            mergedNode.setNext(nodeB);
            nodeB = nodeB.getNext();                
        }       
        mergedNode = mergedNode.getNext();
    }

    if (nodeA != null)
    {
        mergedNode.setNext(nodeA);
    }

    if (nodeB != null)
    {
        mergedNode.setNext(nodeB);
    }       
    return tempNode;
}

2
Node mergeList(Node h1, Node h2) {
    if (h1 == null) return h2;
    if (h2 == null) return h1;
    Node head;
    if (h1.data < h2.data) {
        head = h1;
    } else {
        head = h2;
        h2 = h1;
        h1 = head;
    }

    while (h1.next != null && h2 != null) {
        if (h1.next.data < h2.data) {
            h1 = h1.next;
        } else {
            Node afterh2 = h2.next;
            Node afterh1 = h1.next;
            h1.next = h2;
            h2.next = afterh1;

            if (h2.next != null) {
                h2 = afterh2;
            }
        }
    }
    return head;
}

1

অতিরিক্ত নোড তৈরি না করে এটি করা যেতে পারে, প্যারামিটারগুলিতে কেবল নোডের অন্য একটি রেফারেন্স (নোড টেম্প) দিয়ে passing

private static Node mergeTwoLists(Node nodeList1, Node nodeList2, Node temp) {
    if(nodeList1 == null) return nodeList2;
    if(nodeList2 == null) return nodeList1;

    if(nodeList1.data <= nodeList2.data){
        temp = nodeList1;
        temp.next = mergeTwoLists(nodeList1.next, nodeList2, temp);
    }
    else{
        temp = nodeList2;
        temp.next = mergeTwoLists(nodeList1, nodeList2.next, temp);
    }
    return temp;
}

1

আমি সমাধানটি কীভাবে ভাবলাম তা ভাগ করে নিতে চাই ... আমি সমাধানটি পুনর্বিবেচনার সাথে জড়িত দেখে দেখেছি এবং সেগুলি বেশ আশ্চর্যজনক, এটি কার্যকরী এবং মডুলার চিন্তার ফলাফল। আমি সত্যিই ভাগ করে নেওয়ার প্রশংসা করি।

আমি যুক্ত করতে চাই যে পুনরাবৃত্তি বড় চোটের জন্য কাজ করবে না, স্ট্যাক কলগুলি উপচে পড়বে; তাই আমি পুনরাবৃত্তি পদ্ধতির চেষ্টা করার সিদ্ধান্ত নিয়েছি ... এবং এটি আমি পেয়েছি।

কোডটি বেশ স্ব-বর্ণনামূলক, আমি এটির আশ্বাস দেওয়ার জন্য কিছু ইনলাইন মন্তব্য যুক্ত করেছি।

যদি আপনি এটি না পান তবে দয়া করে আমাকে জানান এবং আমি পাঠযোগ্যতার উন্নতি করব (সম্ভবত আমার নিজের কোডের একটি বিভ্রান্তিমূলক ব্যাখ্যা করছি)।

import java.util.Random;


public class Solution {

    public static class Node<T extends Comparable<? super T>> implements Comparable<Node<T>> {

        T data;
        Node next;

        @Override
        public int compareTo(Node<T> otherNode) {
            return data.compareTo(otherNode.data);
        }

        @Override
        public String toString() {
            return ((data != null) ? data.toString() + ((next != null) ? "," + next.toString() : "") : "null");
        }
    }

    public static Node merge(Node firstLeft, Node firstRight) {
        combine(firstLeft, firstRight);
        return Comparision.perform(firstLeft, firstRight).min;

    }

    private static void combine(Node leftNode, Node rightNode) {
        while (leftNode != null && rightNode != null) {
            // get comparision data about "current pair of nodes being analized".
            Comparision comparision = Comparision.perform(leftNode, rightNode);
            // stores references to the next nodes
            Node nextLeft = leftNode.next; 
            Node nextRight = rightNode.next;
            // set the "next node" of the "minor node" between the "current pair of nodes being analized"...
            // ...to be equals the minor node between the "major node" and "the next one of the minor node" of the former comparision.
            comparision.min.next = Comparision.perform(comparision.max, comparision.min.next).min;
            if (comparision.min == leftNode) {
                leftNode = nextLeft;
            } else {
                rightNode = nextRight;
            }
        }
    }

/** Stores references to two nodes viewed as one minimum and one maximum. The static factory method populates properly the instance being build */
    private static class Comparision {

        private final Node min;
        private final Node max;

        private Comparision(Node min, Node max) {
            this.min = min;
            this.max = max;
        }

        private static Comparision perform(Node a, Node b) {
            Node min, max;
            if (a != null && b != null) {
                int comparision = a.compareTo(b);
                if (comparision <= 0) {
                    min = a;
                    max = b;
                } else {
                    min = b;
                    max = a;
                }
            } else {
                max = null;
                min = (a != null) ? a : b;
            }
            return new Comparision(min, max);
        }
    }

// Test example....
    public static void main(String args[]) {
        Node firstLeft = buildList(20);
        Node firstRight = buildList(40);
        Node firstBoth = merge(firstLeft, firstRight);
        System.out.println(firstBoth);
    }

// someone need to write something like this i guess...
    public static Node buildList(int size) {
        Random r = new Random();
        Node<Integer> first = new Node<>();
        first.data = 0;
        first.next = null;
        Node<Integer> current = first;
        Integer last = first.data;
        for (int i = 1; i < size; i++) {
            Node<Integer> node = new Node<>();
            node.data = last + r.nextInt(5);
            last = node.data;
            node.next = null;
            current.next = node;
            current = node;
        }
        return first;
    }

}


1

একটি সহজ পুনরাবৃত্তি সমাধান।

Node* MergeLists(Node* A, Node* B)
{
    //handling the corner cases

    //if both lists are empty
    if(!A && !B)
    {
        cout << "List is empty" << endl;
        return 0;
    }
    //either of list is empty
    else if(!A) return B;
    else if(!B) return A;
    else
    {
        Node* head = NULL;//this will be the head of the newList
        Node* previous = NULL;//this will act as the

        /* In this algorithm we will keep the
         previous pointer that will point to the last node of the output list.
         And, as given we have A & B as pointer to the given lists.

         The algorithm will keep on going untill either one of the list become empty.
         Inside of the while loop, it will divide the algorithm in two parts:
            - First, if the head of the output list is not obtained yet
            - Second, if head is already there then we will just compare the values and keep appending to the 'previous' pointer.
         When one of the list become empty we will append the other 'left over' list to the output list.
         */
         while(A && B)
         {
             if(!head)
             {
                 if(A->data <= B->data)
                 {
                     head = A;//setting head of the output list to A
                     previous = A; //initializing previous
                     A = A->next;
                 }
                 else
                 {
                     head = B;//setting head of the output list to B
                     previous = B;//initializing previous
                     B = B->next;
                 }
             }
             else//when head is already set
             {
                 if(A->data <= B->data)
                 {
                     if(previous->next != A)
                         previous->next = A;
                     A = A->next;//Moved A forward but keeping B at the same position
                 }
                 else
                 {
                     if(previous->next != B)
                         previous->next = B;
                     B = B->next; //Moved B forward but keeping A at the same position
                 }
                 previous = previous->next;//Moving the Output list pointer forward
             }
         }
        //at the end either one of the list would finish
        //and we have to append the other list to the output list
        if(!A)
            previous->next = B;

        if(!B)
            previous->next = A;

        return head; //returning the head of the output list
    }
}

1

আমি একটি পুনরাবৃত্তি সমাধান নীচে দেখায়। একটি পুনরাবৃত্তির সমাধান আরও কমপ্যাক্ট হবে, তবে যেহেতু আমরা তালিকার দৈর্ঘ্য জানি না, তাই পুনরাবৃত্তি স্ট্যাক ওভারফ্লোয়ের ঝুঁকি চালায়।

প্রাথমিক ধারণাটি মার্জ সাজানোর ক্ষেত্রে মার্জ পদক্ষেপের অনুরূপ; আমরা প্রতিটি ইনপুট তালিকার সাথে সম্পর্কিত একটি পয়েন্টার রাখি; প্রতিটি পুনরাবৃত্তিতে, আমরা ছোট উপাদানটির সাথে সম্পর্কিত পয়েন্টারটি অগ্রসর করি। তবে, এখানে একটি গুরুত্বপূর্ণ পার্থক্য রয়েছে যেখানে বেশিরভাগ লোক বিভ্রান্ত হয়। মার্জ সাজানোর ক্ষেত্রে, যেহেতু আমরা ফলাফল অ্যারে ব্যবহার করি, সন্নিবেশ করার পরবর্তী অবস্থানটি সর্বদা ফলাফল অ্যারের সূচক হয়। একটি লিঙ্কযুক্ত তালিকার জন্য, আমাদের বাছাই তালিকার শেষ উপাদানটির একটি পয়েন্টার রাখতে হবে। পয়েন্টারটি একটি ইনপুট তালিকা থেকে অন্যটিতে যেতে পারে যার উপর নির্ভর করে কারও কাছে বর্তমান পুনরাবৃত্তির জন্য ছোট উপাদান রয়েছে।

তার সাথে, নিম্নলিখিত কোডটি স্ব-বর্ণনামূলক হওয়া উচিত।

public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
    if (l1 == null) {
        return l2;
    }
    if (l2 == null) {
        return l1;
    }
    ListNode first = l1;
    ListNode second = l2;
    ListNode head = null;
    ListNode last = null;

    while (first != null && second != null) {
        if (first.val < second.val) {
            if (last != null) {
                last.next = first;
            }
            last = first;
            first = first.next;
        } else {
            if (last != null) {
                last.next = second;
            }
            last = second;
            second = second.next;
        }
        if (head == null) {
            head = last;
        }
    }

    if (first == null) {
        last.next = second;
    }
    if (second == null) {
        last.next = first;
    }

    return head;
}

1

জাভাস্ক্রিপ্টে সহজ কোড দুটি সংযুক্ত তালিকার স্থানটিতে মার্জ করতে।

function mergeLists(l1, l2) {
    let head = new ListNode(0); //dummy
    let curr = head;
    while(l1 && l2) {
        if(l2.val >= l1.val) {
            curr.next = l1;
            l1 = l1.next;
        } else {
            curr.next = l2;
            l2=l2.next
        }
        curr = curr.next;
    }
    if(!l1){
        curr.next=l2;
    }
    if(!l2){
        curr.next=l1;
    } 
    return head.next;
}

0

প্রথমে "কোনও নতুন অতিরিক্ত নোড তৈরি না করে" এর অর্থটি বোঝুন , আমি যেমন বুঝতে পেরেছি তার অর্থ এই নয় যে আমার কাছে পয়েন্টার (গুলি) থাকতে পারে না যা কোন বিদ্যমান নোডকে নির্দেশ করে।

বিদ্যমান নোডগুলিতে পয়েন্টার কথা না বলে আপনি এটি অর্জন করতে পারবেন না, এমনকি যদি আপনি এটি অর্জনের জন্য পুনরাবৃত্তি ব্যবহার করেন, সিস্টেম কল স্ট্যাক হিসাবে আপনার জন্য পয়েন্টার তৈরি করবে। এটি ঠিক সিস্টেমটিকে পয়েন্টার যুক্ত করতে বলার মতো যা আপনি আপনার কোড এড়িয়ে গেছেন।

অতিরিক্ত পয়েন্টার গ্রহণের মাধ্যমে এটি অর্জনের জন্য সাধারণ ফাংশন :

typedef struct _LLNode{
    int             value;
    struct _LLNode* next;
}LLNode;


LLNode* CombineSortedLists(LLNode* a,LLNode* b){
    if(NULL == a){
        return b;
    }
    if(NULL == b){
        return a;
    }
    LLNode* root  = NULL;
    if(a->value < b->value){
        root = a;
        a = a->next;
    }
    else{
        root = b;
        b    = b->next;
    }
    LLNode* curr  = root;
    while(1){
        if(a->value < b->value){
            curr->next = a;
            curr = a;
            a=a->next;
            if(NULL == a){
                curr->next = b;
                break;
            }
        }
        else{
            curr->next = b;
            curr = b;
            b=b->next;
            if(NULL == b){
                curr->next = a;
                break;
            }
        }
    }
    return root;
}

0
Node * merge_sort(Node *a, Node *b){
   Node *result = NULL;
   if(a ==  NULL)
      return b;
   else if(b == NULL)
      return a;

  /* For the first node, we would set the result to either a or b */
    if(a->data <= b->data){
       result = a;
    /* Result's next will point to smaller one in lists 
       starting at a->next  and b */
      result->next = merge_sort(a->next,b);
    }
    else {
      result = b;
     /*Result's next will point to smaller one in lists 
       starting at a and b->next */
       result->next = merge_sort(a,b->next);
    }
    return result;
 }

দয়া করে আমার ব্লগ পোস্টটি http://www.algorithmsandme.com/2013/10/linked-list- खेळाडू-two- sorted-link.html এর জন্য দেখুন


0
Node MergeLists(Node list1, Node list2) {
    //if list is null return other list 
   if(list1 == null)
   {
      return list2;
   }
   else if(list2 == null)
   {
      return list1;
   }
   else
   {
        Node head;
        //Take head pointer to the node which has smaller first data node
        if(list1.data < list2.data)
        {
            head = list1;
            list1 = list1.next;
        }
        else
        {
           head = list2;
           list2 = list2.next;
        }
        Node current = head;
        //loop till both list are not pointing to null
        while(list1 != null || list2 != null)
        {
            //if list1 is null, point rest of list2 by current pointer 
            if(list1 == null){
               current.next = list2;
               return head;
            }
            //if list2 is null, point rest of list1 by current pointer 
            else if(list2 == null){
               current.next = list1;
               return head;
            }
            //compare if list1 node data is smaller than list2 node data, list1 node will be
            //pointed by current pointer
            else if(list1.data < list2.data)
            {
                current.next = list1;
                current = current.next;
                list1 = list1.next;
            }
            else
            {
                current.next = list2;
                current = current.next;
                list2 = list2.next;
            }
        }      
    return head;
    }      
}

0

লিঙ্কযুক্ত তালিকাটি প্রয়োগ করা java.util ব্যবহার করে এমন একটি সম্পূর্ণ কার্যকারী উদাহরণ। আপনি কেবল একটি মূল () পদ্ধতিতে নীচের কোডটি পেস্ট করতে পারবেন।

        LinkedList<Integer> dList1 = new LinkedList<Integer>();
        LinkedList<Integer> dList2 = new LinkedList<Integer>();
        LinkedList<Integer> dListMerged = new LinkedList<Integer>();

        dList1.addLast(1);
        dList1.addLast(8);
        dList1.addLast(12);
        dList1.addLast(15);
        dList1.addLast(85);

        dList2.addLast(2);
        dList2.addLast(3);
        dList2.addLast(12);
        dList2.addLast(24);
        dList2.addLast(85);
        dList2.addLast(185);

        int i = 0;
        int y = 0;
        int dList1Size = dList1.size();
        int dList2Size = dList2.size();
        int list1Item = dList1.get(i);
        int list2Item = dList2.get(y);
        while (i < dList1Size || y < dList2Size) {

            if (i < dList1Size) {

                if (list1Item <= list2Item || y >= dList2Size) {
                    dListMerged.addLast(list1Item);
                    i++;
                    if (i < dList1Size) {
                        list1Item = dList1.get(i);
                    }
                }
            }


            if (y < dList2Size) {

                if (list2Item <= list1Item || i >= dList1Size) {
                    dListMerged.addLast(list2Item);
                    y++;
                    if (y < dList2Size) {
                        list2Item = dList2.get(y);
                    }
                }
            }

        }

        for(int x:dListMerged)
        {
            System.out.println(x);
        }

0

পুনরাবৃত্তির উপায় (স্টেফান উত্তরের রূপ)

 MergeList(Node nodeA, Node nodeB ){
        if(nodeA==null){return nodeB};
        if(nodeB==null){return nodeA};

    if(nodeB.data<nodeA.data){
        Node returnNode = MergeNode(nodeA,nodeB.next);
        nodeB.next = returnNode;
        retturn nodeB;
    }else{
        Node returnNode = MergeNode(nodeA.next,nodeB);
        nodeA.next=returnNode;
        return nodeA;
    }

এটি কল্পনা করতে নীচে লিঙ্কযুক্ত তালিকা বিবেচনা করুন

2>4তালিকা একটি 1>3 তালিকা খ

প্রায় একই উত্তর (পুনরাবৃত্তি না করে) স্টিফান হিসাবে তবে আরও কিছু মন্তব্য / অর্থপূর্ণ পরিবর্তনশীল নাম সহ। কারও আগ্রহী হলে মন্তব্যগুলিতে ডাবল লিঙ্কযুক্ত তালিকাটিও coveredাকা

উদাহরণ বিবেচনা করুন

5->10->15>21 // List1

2->3->6->20 //List2

Node MergeLists(List list1, List list2) {
  if (list1 == null) return list2;
  if (list2 == null) return list1;

if(list1.head.data>list2.head.data){
  listB =list2; // loop over this list as its head is smaller
  listA =list1;
} else {
  listA =list2; // loop over this list
  listB =list1;
}


listB.currentNode=listB.head;
listA.currentNode=listA.head;

while(listB.currentNode!=null){

  if(listB.currentNode.data<listA.currentNode.data){
    Node insertFromNode = listB.currentNode.prev; 
    Node startingNode = listA.currentNode;
    Node temp = inserFromNode.next;
    inserFromNode.next = startingNode;
    startingNode.next=temp;

    startingNode.next.prev= startingNode; // for doubly linked list
    startingNode.prev=inserFromNode;  // for doubly linked list


    listB.currentNode= listB.currentNode.next;
    listA.currentNode= listA.currentNode.next;

  } 
  else
  {
    listB.currentNode= listB.currentNode.next;

  }

}

0

প্রশ্নটি সম্পর্কে আমার গ্রহণ নীচের মত:

সুডোকোড:

Compare the two heads A and B. 
If A <= B, then add A and move the head of A to the next node. 
Similarly, if B < A, then add B and move the head of B to the next node B.
If both A and B are NULL then stop and return.
If either of them is NULL, then traverse the non null head till it becomes NULL.

কোড:

public Node mergeLists(Node headA, Node headB) {
    Node merge = null;
    // If we have reached the end, then stop.
    while (headA != null || headB != null) {
        // if B is null then keep appending A, else check if value of A is lesser or equal than B
        if (headB == null || (headA != null && headA.data <= headB.data)) {
            // Add the new node, handle addition separately in a new method.
            merge = add(merge, headA.data);
            // Since A is <= B, Move head of A to next node
            headA = headA.next;
        // if A is null then keep appending B, else check if value of B is lesser than A
        } else if (headA == null || (headB != null && headB.data < headA.data)) {
            // Add the new node, handle addition separately in a new method.
            merge = add(merge, headB.data);
            // Since B is < A, Move head of B to next node
            headB = headB.next;
        }
    }
    return merge;
}

public Node add(Node head, int data) {
    Node end = new Node(data);
    if (head == null) {
        return end;
    }

    Node curr = head;
    while (curr.next != null) {
        curr = curr.next;
    }

    curr.next = end;
    return head;
}

0
        /* Simple/Elegant Iterative approach in Java*/    
        private static LinkedList mergeLists(LinkedList list1, LinkedList list2) {
                    Node head1 = list1.start;
                    Node head2 = list2.start;
                    if (list1.size == 0)
                    return list2;
                    if (list2.size == 0)
                    return list1;               
                    LinkedList mergeList = new LinkedList();
                    while (head1 != null && head2 != null) {
                        if (head1.getData() < head2.getData()) {
                            int data = head1.getData();
                            mergeList.insert(data);
                            head1 = head1.getNext();
                        } else {
                            int data = head2.getData();
                            mergeList.insert(data);
                            head2 = head2.getNext();
                        }
                    }
                    while (head1 != null) {
                        int data = head1.getData();
                        mergeList.insert(data);
                        head1 = head1.getNext();
                    }
                    while (head2 != null) {
                        int data = head2.getData();
                        mergeList.insert(data);
                        head2 = head2.getNext();
                    }
                    return mergeList;
                }

/* Build-In singly LinkedList class in Java*/
class LinkedList {
    Node start;
    int size = 0;

    void insert(int data) {
        if (start == null)
            start = new Node(data);
        else {
            Node temp = start;
            while (temp.getNext() != null) {
                temp = temp.getNext();
            }
            temp.setNext(new Node(data));
        }
        size++;
    }

    @Override
    public String toString() {

        String str = "";
        Node temp=start;
        while (temp != null) {
            str += temp.getData() + "-->";
            temp = temp.getNext();
        }
        return str;
    }

}

0
LLNode *mergeSorted(LLNode *h1, LLNode *h2) 
{ 
  LLNode *h3=NULL;
  LLNode *h3l;
  if(h1==NULL && h2==NULL)
    return NULL; 
  if(h1==NULL) 
    return h2; 
  if(h2==NULL) 
    return h1; 
  if(h1->data<h2->data) 
  {
    h3=h1;
    h1=h1->next; 
  }
  else 
  { 
    h3=h2; 
    h2=h2->next; 
  }
  LLNode *oh=h3;
  while(h1!=NULL && h2!=NULL) 
  {
    if(h1->data<h2->data) 
    {
      h3->next=h1;
      h3=h3->next;
      h1=h1->next; 
    } 
    else 
    {
      h3->next=h2; 
      h3=h3->next; 
      h2=h2->next; 
    } 
  } 
  if(h1==NULL)
    h3->next=h2;
  if(h2==NULL)
    h3->next=h1;
  return oh;
}

0
// Common code for insert at the end
        private void insertEnd(int data) {
                Node newNode = new Node(data);
                if (head == null) {
                    newNode.next = head;
                    head = tail = newNode;
                    return;
                }
                Node tempNode = tail;
                tempNode.next = newNode;
                tail = newNode;
            }

    private void mergerTwoSortedListInAscOrder(Node tempNode1, Node tempNode2) {

            if (tempNode1 == null && tempNode2 == null)
                return;
            if (tempNode1 == null) {
                head3 = tempNode2;
                return;
            }
            if (tempNode2 == null) {
                head3 = tempNode1;
                return;
            }

            while (tempNode1 != null && tempNode2 != null) {

                if (tempNode1.mData < tempNode2.mData) {
                    insertEndForHead3(tempNode1.mData);
                    tempNode1 = tempNode1.next;
                } else if (tempNode1.mData > tempNode2.mData) {
                    insertEndForHead3(tempNode2.mData);
                    tempNode2 = tempNode2.next;
                } else {
                    insertEndForHead3(tempNode1.mData);
                    insertEndForHead3(tempNode2.mData);
                    tempNode1 = tempNode1.next;
                    tempNode2 = tempNode2.next;
                }

            }
            if (tempNode1 != null) {
                while (tempNode1 != null) {
                    insertEndForHead3(tempNode1.mData);
                    tempNode1 = tempNode1.next;
                }
            }
            if (tempNode2 != null) {
                while (tempNode2 != null) {
                    insertEndForHead3(tempNode2.mData);
                    tempNode2 = tempNode2.next;
                }
            }
        }

:) গ্লোবএমপিএম


0
public static Node merge(Node h1, Node h2) {

    Node h3 = new Node(0);
    Node current = h3;

    boolean isH1Left = false;
    boolean isH2Left = false;

    while (h1 != null || h2 != null) {
        if (h1.data <= h2.data) {
            current.next = h1;
            h1 = h1.next;
        } else {
            current.next = h2;
            h2 = h2.next;
        }
        current = current.next;

        if (h2 == null && h1 != null) {
            isH1Left = true;
            break;
        }

        if (h1 == null && h2 != null) {
            isH2Left = true;
            break;
        }
    }

    if (isH1Left) {
        while (h1 != null) {
            current.next = h1;
            current = current.next;
            h1 = h1.next;
        }
    } 

    if (isH2Left) {
        while (h2 != null) {
            current.next = h2;
            current = current.next;
            h2 = h2.next;
        }
    }

    h3 = h3.next;

    return h3;
}

কোনও পুনরাবৃত্তি এবং কোনও অতিরিক্ত অবজেক্ট তৈরি করা হয়নি। মাত্র কয়েকটি অতিরিক্ত রেফারেন্স।
কং ওয়াং

0

আমি নিজেকে অনেক 'যদি' শর্ত সাশ্রয় করতে শুরুতে একটি মাত্র ডামি নোড তৈরি করেছি।

    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {

        ListNode list1Cursor = l1;
        ListNode list2Cursor = l2;

        ListNode currentNode = new ListNode(-1); // Dummy node
        ListNode head = currentNode;

        while (list1Cursor != null && list2Cursor != null)
        {
            if (list1Cursor.val < list2Cursor.val) {
                currentNode.next = list1Cursor;
                list1Cursor = list1Cursor.next;
                currentNode = currentNode.next;
            } else {
                currentNode.next = list2Cursor;
                list2Cursor = list2Cursor.next;
                currentNode = currentNode.next;
            }
        }

        // Complete the rest
        while (list1Cursor != null) {
            currentNode.next = list1Cursor;
            currentNode = currentNode.next;
            list1Cursor = list1Cursor.next;
        }
        while (list2Cursor != null) {
            currentNode.next = list2Cursor;
            currentNode = currentNode.next;
            list2Cursor = list2Cursor.next;
        }

        return head.next;
    }


-1
private static Node mergeLists(Node L1, Node L2) {

    Node P1 = L1.val < L2.val ? L1 : L2;
    Node P2 = L1.val < L2.val ? L2 : L1;
    Node BigListHead = P1;
    Node tempNode = null;

    while (P1 != null && P2 != null) {
        if (P1.next != null && P1.next.val >P2.val) {
        tempNode = P1.next;
        P1.next = P2;
        P1 = P2;
        P2 = tempNode;
        } else if(P1.next != null) 
        P1 = P1.next;
        else {
        P1.next = P2;
        break;
        }
    }

    return BigListHead;
}

-1
void printLL(){
    NodeLL cur = head;
    if(cur.getNext() == null){
        System.out.println("LL is emplty");
    }else{
        //System.out.println("printing Node");
        while(cur.getNext() != null){
            cur = cur.getNext();
            System.out.print(cur.getData()+ " ");

        }
    }
    System.out.println();
}

void mergeSortedList(NodeLL node1, NodeLL node2){
    NodeLL cur1 = node1.getNext();
    NodeLL cur2 = node2.getNext();

    NodeLL cur = head;
    if(cur1 == null){
        cur = node2;
    }

    if(cur2 == null){
        cur = node1;
    }       
    while(cur1 != null && cur2 != null){

        if(cur1.getData() <= cur2.getData()){
            cur.setNext(cur1);
            cur1 = cur1.getNext();
        }
        else{
            cur.setNext(cur2);
            cur2 = cur2.getNext();
        }
        cur = cur.getNext();
    }       
    while(cur1 != null){
        cur.setNext(cur1);
        cur1 = cur1.getNext();
        cur = cur.getNext();
    }       
    while(cur2 != null){
        cur.setNext(cur2);
        cur2 = cur2.getNext();
        cur = cur.getNext();
    }       
    printLL();      
}

উপরের কোডটি দুটি এককভাবে বাছাই করা লিঙ্ক তালিকার একত্রীকরণ করবে।
সানজয়

-2

এখানে দু'টি সাজানো লিঙ্কযুক্ত তালিকার হেডএ এবং হেডবি কীভাবে একত্রিত করতে হবে তার কোডটি এখানে:

Node* MergeLists1(Node *headA, Node* headB)
{
    Node *p = headA;
    Node *q = headB;
    Node *result = NULL; 
    Node *pp = NULL;
    Node *qq = NULL;
    Node *head = NULL;
    int value1 = 0;
    int value2 = 0;
    if((headA == NULL) && (headB == NULL))
    {
        return NULL;
    }
    if(headA==NULL)
    {
        return headB;
    }
    else if(headB==NULL)
    {
        return headA;
    }
    else
    {
        while((p != NULL) || (q != NULL))
        {
            if((p != NULL) && (q != NULL))
            {
                int value1 = p->data;
                int value2 = q->data;
                if(value1 <= value2)
                {
                    pp = p->next;
                    p->next = NULL;
                    if(result == NULL)
                    {
                        head = result = p;
                    }
                    else
                    {
                        result->next = p;
                        result = p;
                    }
                    p = pp;
                }
                else
                {
                    qq = q->next;
                    q->next = NULL;
                    if(result == NULL)
                    {
                        head = result = q;
                    }
                    else
                    {
                        result->next = q;
                        result = q;
                    }
                    q = qq;
                }
            }
            else
            {
                if(p != NULL)
                {
                    pp = p->next;
                    p->next = NULL;
                    result->next = p;
                    result = p;
                    p = pp;
                }
                if(q != NULL)
                {
                    qq = q->next;
                    q->next = NULL;
                    result->next = q;
                    result = q;
                    q = qq;
                }
            }
        }
    }
    return head;
}
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.