জাভাতে একটি লিঙ্কযুক্ত তালিকার বিপরীতে পুনরাবৃত্তি করা হচ্ছে


101

আমি কিছুক্ষণের জন্য একটি ক্লাসের জন্য জাভা প্রকল্পে কাজ করছি। এটি একটি লিঙ্কযুক্ত তালিকার একটি বাস্তবায়ন (এখানে ডাকা হয় AddressList, সাধারণ নোডযুক্ত বলে ListNode)। ক্যাচটি হ'ল সমস্ত কিছু পুনরাবৃত্ত আলগোরিদিম দিয়ে করতে হবে। আমি এক পদ্ধতিতে সমস্ত কিছু জরিমানা করতে সক্ষম হয়েছি:public AddressList reverse()

ListNode:

public class ListNode{
  public String data;
  public ListNode next;
}

এই মুহুর্তে আমার reverseফাংশনটি কেবলমাত্র একটি সহায়ক ফাংশনকে কল করে যা পুনরাবৃত্তি করার অনুমতি দেওয়ার জন্য একটি যুক্তি লাগে।

public AddressList reverse(){
  return new AddressList(this.reverse(this.head));
}

স্বাক্ষর সহ আমার সহায়ক ফাংশন সহ private ListNode reverse(ListNode current)

এই মুহুর্তে, আমি এটি স্ট্যাক ব্যবহার করে পুনরাবৃত্তভাবে কাজ করছি, তবে স্পেসিফিকেশনটির জন্য এটি প্রয়োজনীয় নয়। আমি সি-তে একটি অ্যালগরিদম পেয়েছি যা এটি পুনরায় বিপরীত হয়ে হাতে হাতে জাভা কোডে রূপান্তরিত করে, এবং এটি কাজ করে, তবে আমার এটি সম্পর্কে কোনও ধারণা ছিল না।

সম্পাদনা: কিছুই নয়, এর মধ্যেই আমি এটি বের করে ফেললাম।

private AddressList reverse(ListNode current, AddressList reversedList){
  if(current == null) 
      return reversedList;
  reversedList.addToFront(current.getData());
  return this.reverse(current.getNext(), reversedList);
}

আমি এখানে থাকাকালীন কেউ কি এই রুটটিতে কোনও সমস্যা দেখতে পাবে?


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

উত্তর:


318

একটি উত্তরে এমন কোড রয়েছে যা এটিকে বানান বলে মনে করে, তবে আপনি নীচে থেকে শুরু করে ছোট প্রশ্নগুলি জিজ্ঞাসা করে এবং উত্তর দিয়েছিলেন (দ্য লিটল লিস্পারের এই পদ্ধতিটি):

  1. নাল বিপরীত (খালি তালিকা) কি? খালি.
  2. এক উপাদান তালিকার বিপরীতটি কী? উপাদান।
  3. এন উপাদান তালিকার বিপরীতটি কী? বাকী তালিকার বিপরীত প্রথম উপাদানটি অনুসরণ করে।

public ListNode Reverse(ListNode list)
{
    if (list == null) return null; // first question

    if (list.next == null) return list; // second question

    // third question - in Lisp this is easy, but we don't have cons
    // so we grab the second element (which will be the last after we reverse it)

    ListNode secondElem = list.next;

    // bug fix - need to unlink list from the rest or you will get a cycle
    list.next = null;

    // then we reverse everything from the second element on
    ListNode reverseRest = Reverse(secondElem);

    // then we join the two lists
    secondElem.next = list;

    return reverseRest;
}

30
বাহ, আমি পুরো "তিনটি প্রশ্ন" জিনিস পছন্দ করি।
sdellysse

4
ধন্যবাদ। ছোট প্রশ্নটি লিস্প শেখার ভিত্তি বলে মনে করা হচ্ছে। এটি নব্বইয়ের থেকে অন্তর্ভুক্তিকে আড়াল করারও একটি উপায়, যা মূলত এই ধরণটি। আপনি যদি সত্যিই এই ধরণের সমস্যাটি পেরেক করতে চান তবে আমি লিটল লিস্পারটি পড়ার পরামর্শ দিচ্ছি।
প্লিন্থ

44
ব্যতিক্রমী পরিস্থিতিতে ব্যতিক্রম। যদি একটি পরিচিত অবস্থার জন্য একটি ক্যাচ ব্যবহার করা হয় যা যদি একটি আইপি দ্বারা পরীক্ষাযোগ্য হয়?
লুক স্ক্যাফার

4
আমি বিশ্বাস করি আপনার ভেরিয়েবলটি তৈরি করার দরকার নেই: সেকেন্ডএলেম যেহেতু list.next এখনও সেকেন্ডএলেম। "লিস্টনোড রিভার্সেস্ট = বিপরীত (সেকেন্ডএলেম);" এর পরে আপনি প্রথমে "list.next.next = list" এবং তারপরে "list.next = null" করতে পারেন। এবং এটাই.
চুয়ানরক্স

3
List.next = নাল কেন আপনি ব্যাখ্যা করতে পারেন? আমি চক্রটি বোঝার চেষ্টা করছিলাম কিন্তু পেলাম না।
রোহিত

29

আমাকে একটি সাক্ষাত্কারে এই প্রশ্ন জিজ্ঞাসা করা হয়েছিল এবং আমি বিরক্ত হয়ে পড়েছিলাম যে আমি কিছুটা ঘাবড়ে গিয়েছি বলে আমি এ নিয়ে ভুগলাম।

এর বিপরীত (হেড, এনইউএল) নামে ডাকা একক লিঙ্কযুক্ত তালিকার বিপরীত হওয়া উচিত; সুতরাং যদি এটি আপনার তালিকা ছিল:

1-> 2-> 3-> 4> 5-> নাল
এটি হয়ে যাবে:
5-> 4> 3-> 2-> 1-> নাল

    //Takes as parameters a node in a linked list, and p, the previous node in that list
    //returns the head of the new list
    Node reverse(Node n,Node p){   
        if(n==null) return null;
        if(n.next==null){ //if this is the end of the list, then this is the new head
            n.next=p;
            return n;
        }
        Node r=reverse(n.next,n);  //call reverse for the next node, 
                                      //using yourself as the previous node
        n.next=p;                     //Set your next node to be the previous node 
        return r;                     //Return the head of the new list
    }
    

সম্পাদনা করুন: ive এটিতে 6 টি সম্পাদনার মতো করে দেখিয়েছে যে এটি এখনও আমার পক্ষে খুব জটিল


2
আমি জাভা নির্দিষ্ট করা থাকলে, একটি সাক্ষাত্কারে "অবশ্যই আবশ্যক হতে হবে" প্রয়োজনীয়তার দ্বারা কিছুটা বিচলিত হব। অন্যথায় আমি পি = নাল সাথে যাব; while (n.next! = null) {n2 = n.xt; n.next = p; পি = এন; n = n2;} n. পূর্ববর্তী = পি; রিটার্ন এন; ও (এন) স্ট্যাক পাখিদের জন্য।
স্টিভ জেসোপ

ওহ হ্যাঁ, পাশাপাশি মাথার উপর একটি নাল চেক করুন, এটি জাভা হচ্ছে।
স্টিভ জেসোপ 10:০৮

23

আমি অর্ধেক পথ পাড়ি পেয়েছি (নাল অবধি, এবং একটি নোড প্লাথের পরামর্শ অনুসারে), তবে পুনরাবৃত্ত কল করার পরে ট্র্যাকটি হারিয়েছে। যাইহোক, প্লিন্থ দ্বারা পোস্টটি পড়ার পরে, আমি এখানে এলাম:

Node reverse(Node head) {
  // if head is null or only one node, it's reverse of itself.
  if ( (head==null) || (head.next == null) ) return head;

  // reverse the sub-list leaving the head node.
  Node reverse = reverse(head.next);

  // head.next still points to the last element of reversed sub-list.
  // so move the head to end.
  head.next.next = head;

  // point last node to nil, (get rid of cycles)
  head.next = null;
  return reverse;
}

খুব কনস করছেন মত :) nice.just
Karthikeyan ডি

9

এখানে আরও একটি পুনরাবৃত্ত সমাধান রয়েছে। এটির কারও কারও তুলনায় পুনরাবৃত্তির ক্রিয়াকলাপের মধ্যে কম কোড রয়েছে, তাই এটি একটু দ্রুত হতে পারে। এটি সি # তবে আমি বিশ্বাস করি জাভাটি খুব একই রকম হবে।

class Node<T>
{
    Node<T> next;
    public T data;
}

class LinkedList<T>
{
    Node<T> head = null;

    public void Reverse()
    {
        if (head != null)
            head = RecursiveReverse(null, head);
    }

    private Node<T> RecursiveReverse(Node<T> prev, Node<T> curr)
    {
        Node<T> next = curr.next;
        curr.next = prev;
        return (next == null) ? curr : RecursiveReverse(curr, next);
    }
}

8

আলগোটির নিম্নলিখিত মডেলটিতে কাজ করা দরকার,

  • মাথায় রাখুন
  • লিঙ্কলিস্টের শেষ পর্যন্ত পুনরাবৃত্তি করুন
  • বিপরীত লিঙ্কেজ

গঠন:

Head    
|    
1-->2-->3-->4-->N-->null

null-->1-->2-->3-->4-->N<--null

null-->1-->2-->3-->4<--N<--null

null-->1-->2-->3<--4<--N<--null

null-->1-->2<--3<--4<--N<--null

null-->1<--2<--3<--4<--N<--null

null<--1<--2<--3<--4<--N
                       |
                       Head

কোড:

public ListNode reverse(ListNode toBeNextNode, ListNode currentNode)
{               
        ListNode currentHead = currentNode; // keep track of the head

        if ((currentNode==null ||currentNode.next==null )&& toBeNextNode ==null)return currentHead; // ignore for size 0 & 1

        if (currentNode.next!=null)currentHead = reverse(currentNode, currentNode.next); // travarse till end recursively

        currentNode.next = toBeNextNode; // reverse link

        return currentHead;
}

আউটপুট:

head-->12345

head-->54321

7

আমি মনে করি এটি আরও পরিষ্কার সমাধান, যা এলআইএসপির সাথে সাদৃশ্যপূর্ণ

// Example:
// reverse0(1->2->3, null) => 
//      reverse0(2->3, 1) => 
//          reverse0(3, 2->1) => reverse0(null, 3->2->1)
// once the first argument is null, return the second arg
// which is nothing but the reveresed list.

Link reverse0(Link f, Link n) {
    if (f != null) {
        Link t = new Link(f.data1, f.data2); 
        t.nextLink = n;                      
        f = f.nextLink;             // assuming first had n elements before, 
                                    // now it has (n-1) elements
        reverse0(f, t);
    }
    return n;
}

7

আমি জানি এটি একটি পুরানো পোস্ট, তবে বেশিরভাগ উত্তরগুলি লেজ পুনরাবৃত্ত হয় না অর্থাৎ পুনরাবৃত্ত কল থেকে ফিরে আসার পরে তারা কিছু অপারেশন করে এবং তাই সবচেয়ে কার্যকর নয়।

এখানে একটি লেজ পুনরাবৃত্তি সংস্করণ:

public Node reverse(Node previous, Node current) {
    if(previous == null)
        return null;
    if(previous.equals(head))
        previous.setNext(null);
    if(current == null) {    // end of list
        head = previous;
        return head;
    } else {
                    Node temp = current.getNext();
        current.setNext(previous);
        reverse(current, temp);
    }
    return null;    //should never reach here.
} 

সাথে কল করুন:

Node newHead = reverse(head, head.getNext());

9
আপনি আপনার পদ্ধতিতে "হেড" নামক একটি পরিবর্তনশীল উল্লেখ করেন তবে এটি কোথাও ঘোষণা করা হয় না।
ম্যারাথন

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

4
শূন্য বিপরীত (নোড 1, নোড 2) {
যদি (node1.next! = নাল)
      বিপরীত (node1.next, node1);
   node1.next = node2;
}
এই পদ্ধতিটিকে বিপরীত হিসাবে কল করুন (শুরু করুন, নাল);

4
public Node reverseListRecursive(Node curr)
{
    if(curr == null){//Base case
        return head;
    }
    else{
        (reverseListRecursive(curr.next)).next = (curr);
    }
    return curr;
}

3
public void reverse() {
    head = reverseNodes(null, head);
}

private Node reverseNodes(Node prevNode, Node currentNode) {
    if (currentNode == null)
        return prevNode;
    Node nextNode = currentNode.next;
    currentNode.next = prevNode;
    return reverseNodes(currentNode, nextNode);
}

আমি মনে করি এটিই সেরা সমাধান ... সহজ, লেজ পুনরাবৃত্তি অপটিমাইজযোগ্য এবং শুধুমাত্র একটি নাল চেক।
sdanzig

2
public static ListNode recRev(ListNode curr){

    if(curr.next == null){
        return curr;
    }
    ListNode head = recRev(curr.next);
    curr.next.next = curr;
    curr.next = null;

    // propogate the head value
    return head;

}

এটি সর্বোত্তম সমাধান তবে কোনও উত্তর দেওয়া হয়নি বলে সেরা উত্তর নয় :)। আমি প্রথমে একটি অনুরূপ সমাধান পেয়েছি কিন্তু মাথা উল্লেখটি হারিয়েছি। এই সমাধান যে সমাধান করে।
OpenUserX03

2

পুনরাবৃত্ত আলগো দ্বারা বিপরীত।

public ListNode reverse(ListNode head) {
    if (head == null || head.next == null) return head;    
    ListNode rHead = reverse(head.next);
    rHead.next = head;
    head = null;
    return rHead;
}

পুনরাবৃত্তি দ্বারা

public ListNode reverse(ListNode head) {
    if (head == null || head.next == null) return head;    
    ListNode prev = null;
    ListNode cur = head
    ListNode next = head.next;
    while (next != null) {
        cur.next = prev;
        prev = cur;
        cur = next;
        next = next.next;
    }
    return cur;
}

দুর্ভাগ্যক্রমে আপনার পুনরাবৃত্তির বিপরীতটি ভুল!
শ্রী অরবিন্দ

@ শ্রীঅরবিন্দ - কেন?
রেয়রিং

2

এই সমাধানটি প্রমাণ করে যে কোনও যুক্তির প্রয়োজন নেই।

/**
 * Reverse the list
 * @return reference to the new list head
 */
public LinkNode reverse() {
    if (next == null) {
        return this; // Return the old tail of the list as the new head
    }
    LinkNode oldTail = next.reverse(); // Recurse to find the old tail
    next.next = this; // The old next node now points back to this node
    next = null; // Make sure old head has no next
    return oldTail; // Return the old tail all the way back to the top
}

এটি কার্যকারী কোডটি প্রমাণ করে যে এটি কাজ করে:

public class LinkNode {
    private char name;
    private LinkNode next;

    /**
     * Return a linked list of nodes, whose names are characters from the given string
     * @param str node names
     */
    public LinkNode(String str) {
        if ((str == null) || (str.length() == 0)) {
            throw new IllegalArgumentException("LinkNode constructor arg: " + str);
        }
        name = str.charAt(0);
        if (str.length() > 1) {
            next = new LinkNode(str.substring(1));
        }
    }

    public String toString() {
        return name + ((next == null) ? "" : next.toString());
    }

    public static void main(String[] args) {
        LinkNode head = new LinkNode("abc");
        System.out.println(head);
        System.out.println(head.reverse());
    }
}

2

এখানে একটি সহজ পুনরাবৃত্তি পদ্ধতির:

public static Node reverse(Node root) {
    if (root == null || root.next == null) {
        return root;
    }

    Node curr, prev, next;
    curr = root; prev = next = null;
    while (curr != null) {
        next = curr.next;
        curr.next = prev;

        prev = curr;
        curr = next;
    }
    return prev;
}

এবং এখানে একটি পুনরাবৃত্তি পদ্ধতির:

public static Node reverseR(Node node) {
    if (node == null || node.next == null) {
        return node;
    }

    Node next = node.next;
    node.next = null;

    Node remaining = reverseR(next);
    next.next = node;
    return remaining;
}

1

জাভা যেহেতু সর্বদা পাসওয়ার্ড-ভ্যালু, জাভার কোনও লিঙ্কযুক্ত তালিকার পুনরাবৃত্তির জন্য, পুনরাবৃত্তির শেষে "নতুন মাথা" (বিপর্যয়ের পরে প্রধান নোড) ফিরে আসার বিষয়টি নিশ্চিত করুন।

static ListNode reverseR(ListNode head) {
    if (head == null || head.next == null) {
        return head;
    }

    ListNode first = head;
    ListNode rest = head.next;

    // reverse the rest of the list recursively
    head = reverseR(rest);

    // fix the first node after recursion
    first.next.next = first;
    first.next = null;

    return head;
}

1

পয়েন্টজিরোটো জাভাতে মার্জিত উত্তর পেয়েছে এবং একই ...

public void reverseList(){
    if(head!=null){
        head = reverseListNodes(null , head);
    }
}

private Node reverseListNodes(Node parent , Node child ){
    Node next = child.next;
    child.next = parent;
    return (next==null)?child:reverseListNodes(child, next);
}

এটি নিখুঁত কারণ আপনি সর্বদা তালিকার তালিকাটি তালিকার তালিকা হিসাবে নিতে চান না তবে নিজের সন্তানের সাথে নিজেকে উল্টিয়ে দিতে চান, আপনাকে ধন্যবাদ
মানু

0
public class Singlelinkedlist {
  public static void main(String[] args) {
    Elem list  = new Elem();
    Reverse(list); //list is populate some  where or some how
  }

  //this  is the part you should be concerned with the function/Method has only 3 lines

  public static void Reverse(Elem e){
    if (e!=null)
      if(e.next !=null )
        Reverse(e.next);
    //System.out.println(e.data);
  }
}

class Elem {
  public Elem next;    // Link to next element in the list.
  public String data;  // Reference to the data.
}

0
public Node reverseRec(Node prev, Node curr) {
    if (curr == null) return null;  

    if (curr.next == null) {
        curr.next = prev;
        return curr;

    } else {
        Node temp = curr.next; 
        curr.next = prev;
        return reverseRec(curr, temp);
    }               
}

কল ব্যবহার করে: হেড = রিভার্সরেক (নাল, মাথা);


0

অন্যান্য ছেলেরা যা করেছে, অন্য পোস্টে বিষয়বস্তুর একটি খেলা, আমি যা করেছি তা লিঙ্কলিস্টের একটি খেলা, এটি লিঙ্কডলিস্টের সদস্যকে বিপরীত নয়, সদস্যদের কোনও মূল্যকে বিপরীত করে।

Public LinkedList reverse(LinkedList List)
{
       if(List == null)
               return null;
       if(List.next() == null)
              return List;
       LinkedList temp = this.reverse( List.next() );
       return temp.setNext( List );
}

sry আমি ভুলে গিয়েছিলাম আপনার নাল মান সহ লেজের পাশের সেট করার জন্যও একটি সহায়ক পদ্ধতির দরকার
নিমা ঘেদশারফি

0
package com.mypackage;
class list{

    node first;    
    node last;

    list(){
    first=null;
    last=null;
}

/*returns true if first is null*/
public boolean isEmpty(){
    return first==null;
}
/*Method for insertion*/

public void insert(int value){

    if(isEmpty()){
        first=last=new node(value);
        last.next=null;
    }
    else{
        node temp=new node(value);
        last.next=temp;
        last=temp;
        last.next=null;
    }

}
/*simple traversal from beginning*/
public void traverse(){
    node t=first;
    while(!isEmpty() && t!=null){
        t.printval();
        t= t.next;
    }
}
/*static method for creating a reversed linked list*/
public static void reverse(node n,list l1){

    if(n.next!=null)
        reverse(n.next,l1);/*will traverse to the very end*/
    l1.insert(n.value);/*every stack frame will do insertion now*/

}
/*private inner class node*/
private class node{
    int value;
    node next;
    node(int value){
        this.value=value;
    }
    void printval(){
        System.out.print(value+" ");
    }
}

 }

0

সমাধানটি হ'ল:

package basic;

import custom.ds.nodes.Node;

public class RevLinkedList {

private static Node<Integer> first = null;

public static void main(String[] args) {
    Node<Integer> f = new Node<Integer>();
    Node<Integer> s = new Node<Integer>();
    Node<Integer> t = new Node<Integer>();
    Node<Integer> fo = new Node<Integer>();
    f.setNext(s);
    s.setNext(t);
    t.setNext(fo);
    fo.setNext(null);

    f.setItem(1);
    s.setItem(2);
    t.setItem(3);
    fo.setItem(4);
    Node<Integer> curr = f;
    display(curr);
    revLL(null, f);
    display(first);
}

public static void display(Node<Integer> curr) {
    while (curr.getNext() != null) {
        System.out.println(curr.getItem());
        System.out.println(curr.getNext());
        curr = curr.getNext();
    }
}

public static void revLL(Node<Integer> pn, Node<Integer> cn) {
    while (cn.getNext() != null) {
        revLL(cn, cn.getNext());
        break;
    }
    if (cn.getNext() == null) {
        first = cn;
    }
    cn.setNext(pn);
}

}


0
static void reverseList(){

if(head!=null||head.next!=null){
ListNode tail=head;//head points to tail


ListNode Second=head.next;
ListNode Third=Second.next;
tail.next=null;//tail previous head is poiniting null
Second.next=tail;
ListNode current=Third;
ListNode prev=Second;
if(Third.next!=null){



    while(current!=null){
    ListNode    next=current.next;
        current.next=prev;
        prev=current;
        current=next;
    }
    }
head=prev;//new head
}
}
class ListNode{
    public int data;
    public ListNode next;
    public int getData() {
        return data;
    }

    public ListNode(int data) {
        super();
        this.data = data;
        this.next=null;
    }

    public ListNode(int data, ListNode next) {
        super();
        this.data = data;
        this.next = next;
    }

    public void setData(int data) {
        this.data = data;
    }
    public ListNode getNext() {
        return next;
    }
    public void setNext(ListNode next) {
        this.next = next;
    }





}

0
private Node ReverseList(Node current, Node previous)
    {
        if (current == null) return null;
        Node originalNext = current.next;
        current.next = previous;
        if (originalNext == null) return current;
        return ReverseList(originalNext, current);
    }

রিভার্সলিস্ট (মাথা, নাল) দিয়ে শুরু করুন
প্যাট করুন

0
//this function reverses the linked list
public Node reverseList(Node p) {
    if(head == null){
        return null;
    }
    //make the last node as head
    if(p.next == null){
        head.next = null;
        head = p;
        return p;
    }
    //traverse to the last node, then reverse the pointers by assigning the 2nd last node to last node and so on..
    return reverseList(p.next).next = p;
}

0
//Recursive solution
class SLL
{
   int data;
   SLL next;
}

SLL reverse(SLL head)
{
  //base case - 0 or 1 elements
  if(head == null || head.next == null) return head;

  SLL temp = reverse(head.next);
  head.next.next = head;
  head.next = null;
  return temp;
}

0

পুনরাবৃত্ত হওয়া তথ্য কাঠামোর অপরিবর্তনীয় বাস্তবায়ন নিয়ে আলোচনা করা একটি নিবন্ধ দ্বারা অনুপ্রাণিত হয়ে আমি সুইফ্ট ব্যবহার করে একটি বিকল্প সমাধান একসাথে রেখেছি।

নিম্নলিখিত বিষয়গুলি তুলে ধরে শীর্ষস্থানীয় উত্তর নথিগুলির সমাধান:

  1. শূন্যের বিপরীতটি (খালি তালিকা) কী?
    • এখানে কিছু যায় আসে না, কারণ আমাদের সুইফটে শূন্য সুরক্ষা রয়েছে।
  2. এক উপাদান তালিকার বিপরীতটি কী?
    • উপাদান নিজেই
  3. এন উপাদান তালিকার বিপরীতটি কী?
    • প্রথম উপাদানটির পরে দ্বিতীয় উপাদানটির বিপরীত।

নীচের সমাধানে যেখানে প্রযোজ্য সেখানে আমি এগুলি বলেছি।

/**
 Node is a class that stores an arbitrary value of generic type T 
 and a pointer to another Node of the same time.  This is a recursive 
 data structure representative of a member of a unidirectional linked
 list.
 */
public class Node<T> {
    public let value: T
    public let next: Node<T>?

    public init(value: T, next: Node<T>?) {
        self.value = value
        self.next = next
    }

    public func reversedList() -> Node<T> {
        if let next = self.next {
            // 3. The reverse of the second element on followed by the first element.
            return next.reversedList() + value
        } else {
            // 2. Reverse of a one element list is itself
            return self
        }
    }
}

/**
 @return Returns a newly created Node consisting of the lhs list appended with rhs value.
 */
public func +<T>(lhs: Node<T>, rhs: T) -> Node<T> {
    let tail: Node<T>?
    if let next = lhs.next {
        // The new tail is created recursively, as long as there is a next node.
        tail = next + rhs
    } else {
        // If there is not a next node, create a new tail node to append
        tail = Node<T>(value: rhs, next: nil)
    }
    // Return a newly created Node consisting of the lhs list appended with rhs value.
    return Node<T>(value: lhs.value, next: tail)
}

0

পুনরাবৃত্তি ব্যবহার করে লিঙ্কযুক্ত তালিকার বিপরীতে। ধারণাটি লিঙ্কগুলি বিপরীত করে লিঙ্কগুলি সামঞ্জস্য করছে।

  public ListNode reverseR(ListNode p) {

       //Base condition, Once you reach the last node,return p                                           
        if (p == null || p.next == null) { 
            return p;
        }
       //Go on making the recursive call till reach the last node,now head points to the last node

        ListNode head  = reverseR(p.next);  //Head points to the last node

       //Here, p points to the last but one node(previous node),  q points to the last   node. Then next next step is to adjust the links
        ListNode q = p.next; 

       //Last node link points to the P (last but one node)
        q.next = p; 
       //Set the last but node (previous node) next to null
        p.next = null; 
        return head; //Head points to the last node
    }

1
আপনি যে উত্তরটি সরবরাহ করেন সে সম্পর্কে আরও কিছু বিবরণ যুক্ত করে আরও উত্তর দিতে পারেন?
অ্যারিসোন

1
আমি মন্তব্য যুক্ত। অনেক অনেক ধন্যবাদ
গুরুবেলি

0
public void reverseLinkedList(Node node){
    if(node==null){
        return;
    }

    reverseLinkedList(node.next);
    Node temp = node.next;
    node.next=node.prev;
    node.prev=temp;
    return;
}

-1
public void reverse(){
    if(isEmpty()){
    return;
     }
     Node<T> revHead = new Node<T>();
     this.reverse(head.next, revHead);
     this.head = revHead;
}

private Node<T> reverse(Node<T> node, Node<T> revHead){
    if(node.next == null){
       revHead.next = node;
       return node;
     }
     Node<T> reverse = this.reverse(node.next, revHead);
     reverse.next = node;
     node.next = null;
     return node;
}

-1

যদি কেউ স্কাল বাস্তবায়নের সন্ধান করে তবে এখানে একটি উল্লেখ রয়েছে:

scala> import scala.collection.mutable.LinkedList
import scala.collection.mutable.LinkedList

scala> def reverseLinkedList[A](ll: LinkedList[A]): LinkedList[A] =
         ll.foldLeft(LinkedList.empty[A])((accumulator, nextElement) => nextElement +: accumulator)
reverseLinkedList: [A](ll: scala.collection.mutable.LinkedList[A])scala.collection.mutable.LinkedList[A]

scala> reverseLinkedList(LinkedList("a", "b", "c"))
res0: scala.collection.mutable.LinkedList[java.lang.String] = LinkedList(c, b, a)

scala> reverseLinkedList(LinkedList("1", "2", "3"))
res1: scala.collection.mutable.LinkedList[java.lang.String] = LinkedList(3, 2, 1)

আমার উত্তরটি উন্নত করতে পেরে আমি আরও বেশি খুশি হব যদি সেই ব্যক্তি যদি আমাকে নীচে নামিয়ে দেয় তবে তার কাজের জন্য একটি ব্যাখ্যা দেয়। যাইহোক, এটি এখনও স্কালায় আমার জন্য কাজ করে :)
ভেঙ্কট সুধীর রেড্ডি এডামা

ঠিক তেমনি ডাউনভোটার জানে, এটি একটি পুনরাবৃত্ত (আসলে, একটি লেজ পুনরাবৃত্ত) সমাধান।
ভেঙ্কট সুধীর রেড্ডি এডামা

স্কালা জাভা নয়, এমনকি যদি তারা উভয়ই জেভিএম চালায়।
বিল লিঞ্চ

@ শার্থ বাহ, এটি জেনে ভাল। আপনি আমার উত্তরের প্রথম লাইনটি পড়তে বিরক্ত করলেন?
ভেঙ্কট সুধীর রেড্ডি এডামা

@ ভেনক্যাটসুদিরেডিএইডামা আপনি মূলত প্রশ্নটি জাভায় প্রয়োগের জন্য জিজ্ঞাসা করায় আপনি হতাশ হয়েছেন। যদিও স্কালা জেভিএমে চালিত হয়, এটি প্রশ্নের উত্তর দেওয়ার ক্ষেত্রে সাহায্য করে না ... যদিও এটি বেশ মার্জিত। এফডাব্লুআইডাব্লু, আমি আপনাকে ডাউন করে ফেলিনি।
রায়রেং
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.