Numbers Programming QuestionsC# program to check if a number is divisible by 2C# program to accept 2 integers and return remainderC# program to calculate factorial without using recursionC# program to print nth number in Fibonacci seriesC# program to swap two numbers without using a temp variableC# program to check if the entered number is Armstrong numberC# program to find GCD and LCMC# program to check if a number is prime or notC# program to check if a number is Palindromic or notC# program to determine total ways stairs can be climbedC# program to solve FizzBuzz problemC# program to display factor of entered numberPatterns Programming QuestionsC# program to print star triangleC# program to print star triangleC# program to print star triangleC# program to print star diamondC# program to print star M patternC# program to print number triangle-1C# program to print number triangle-2C# program to print number triangle-3C# program to print number triangle-4C# program to print number triangle-5C# program to print number patternC# program to print number diamondC# program to print alphabet patternStrings Programming QuestionsC# program to print duplicate characters in a StringC# program to check if two Strings are anagrams of each otherC# program to reverse String by using Iteration and RecursionC# program to count number of words in a StringC# program to check if String is PalindromeC# program to remove duplicate characters from StringC# program to return highest occurred character in a StringC# program to determine if the string has all unique charactersC# program to replace all spaces in a string with %20C# program to find all substring in a stringGiven a string containing just the characters (, ), {, }, [ and ], determine if the input string is validGiven two words, beginWord and endWord, and a word list, find the length of the shortest transformation sequence from beginWord to endWordRecursion Programming QuestionsC# program to find factorial of a number using recursionC# program to find the sum of digits of a number using recursionC# program to calculate Power of a number using recursionC# program to form the Fibonacci series using recursionC# program to find GCD using recursionC# program to convert a number from Decimal to Binary using recursionC# program to reverse a LinkedList using recursionC# program to do a recursive binary search in an arrayC# program to write recursive Quicksort algorithmC# program to print a singly linked list backwards using recursionC# program to Towers of Hanoi using recursionC# program to print table of any given number by using recursionArray Programming QuestionsC# program to sort an array in ascending orderC# program to sort an array in descending orderC# program to reverse an arrayC# program to find majority element in an unsorted arrayC# program to find missing number in integer array of 1 to 20C# program to merge two sorted arrays into oneC# program to swap min and max element in integer arrayC# program to determine if any two integers in array sum to given integerC# program to check if array contains a duplicate numberC# program to rotate array to a given pivotC# program to move zeros to end of arrayC# program to find the longest common prefix string amongst an array of stringsC# program to find majority number which appears more than 50% in the unsorted arrayData structures Programming QuestionsC# program to reverse a LinkedlistC# program to find node in LinkedlistC# program to merge two sorted LinkedlistC# program to traverse singly LinkedListC# program to traverse circular singly LinkedListC# program to remove duplicates from a sorted LinkedlistC# program to find nth to last element in singly LinkedlistC# program to delete nth element from headnodeC# program to detect a cycle in LinkedlistC# program to implement binary search treeC# program to implement binary search tree TraversalC# program to find min and max in binary search treeC# program to delete nodes from binary search treeC# program to Breadth First Search (BFS)C# program to Depth First Search (DFS)C# program to implement stackC# program to stack with Push & Pop operationC# program to reverse a StackSorting AlgorithmsSelection Sort Algorithm in C#Insertion Sort Algorithm in C#Heap Sort Algorithm in C#Merge Sort Algorithm in C#Quick Sort Algorithm in C#Bubble Sort Algorithm in C#Shell Sort Algorithm in C#Comb Sort Algorithm in C#Bucket Sort Algorithm in C#Radix Sort Algorithm in C#Searching AlgorithmsLinear or Sequntial Search AlgorithmBinary Search AlgorithmLinear vs Binary Search AlgorithmInterpolation Search AlgorithmInterpolation vs Binary Search AlgorithmTernary Search AlgorithmWhy is Binary Search preferred over Ternary Search?Jump Search AlgorithmExponential Search Algorithm

C# program to reverse a LinkedList using recursion

Here's a C# program that reverses a LinkedList using recursion:


using System;

class Node
{
    public int Data;
    public Node Next;

    public Node(int data)
    {
        Data = data;
        Next = null;
    }
}

class LinkedList
{
    private Node Head;

    public LinkedList()
    {
        Head = null;
    }

    public void AddNode(int data)
    {
        Node newNode = new Node(data);

        if (Head == null)
        {
            Head = newNode;
        }
        else
        {
            Node current = Head;
            while (current.Next != null)
            {
                current = current.Next;
            }
            current.Next = newNode;
        }
    }

    public void Display()
    {
        Node current = Head;
        while (current != null)
        {
            Console.Write(current.Data + " ");
            current = current.Next;
        }
        Console.WriteLine();
    }

    public void Reverse()
    {
        Head = ReverseRecursively(Head);
    }

    private Node ReverseRecursively(Node current)
    {
        // Base case: if the current node is null or the last node in the list
        if (current == null || current.Next == null)
        {
            return current;
        }

        // Recursive case: reverse the rest of the list starting from the next node
        Node nextNode = current.Next;
        current.Next = null;
        Node reversedList = ReverseRecursively(nextNode);
        nextNode.Next = current;

        return reversedList;
    }
}

class Program
{
    static void Main()
    {
        LinkedList linkedList = new LinkedList();
        linkedList.AddNode(1);
        linkedList.AddNode(2);
        linkedList.AddNode(3);
        linkedList.AddNode(4);
        linkedList.AddNode(5);

        Console.WriteLine("Original LinkedList:");
        linkedList.Display();

        linkedList.Reverse();

        Console.WriteLine("Reversed LinkedList:");
        linkedList.Display();
    }
}

In this program, we have a Node class that represents a node in the LinkedList. Each node contains an integer Data and a reference to the next node Next.

The LinkedList class represents the LinkedList and contains methods to add nodes, display the LinkedList, and reverse the LinkedList.

To reverse the LinkedList using recursion, we have the Reverse method in the LinkedList class. This method calls the private helper method ReverseRecursively with the Head of the LinkedList.

The ReverseRecursively method is a recursive method that takes a Node as input and returns the reversed LinkedList starting from that node. It uses a divide-and-conquer approach.

In the base case, if the current node is null or the last node in the list (current.Next is null), we return the current node as it will be the new head of the reversed LinkedList.

In the recursive case, we reverse the rest of the list starting from the next node (obtained by current.Next). We store the next node in a temporary variable. Then, we set the Next of the current node to null to detach it from the rest of the list. We recursively call ReverseRecursively with the next node to get the reversed list starting from that node. Finally, we set the Next of the next node to the current node to link them in the reversed order.

In the Main method, we create a LinkedList, add nodes, display the original LinkedList, reverse it using the Reverse method, and display the reversed LinkedList.

In the example above, the output would be:

Original LinkedList:
1 2 3 4 5
Reversed LinkedList:
5 4 3 2 1

The original LinkedList 1 -> 2 -> 3 -> 4 -> 5 is reversed to 5 -> 4 -> 3 -> 2 -> 1.