How to create a Quene data structure in C#

Here is the Code:

class Program
    {
        static void Main(string[] args)
        {
            Quene q = new Quene();
 //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            q.add(1);

How to create Stack data structure in C# with Push() and Pop() functions

Here is the Code:

  class Program
    {
        static void Main(string[] args)
        {
    //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            stack s = new stack();

Function to Sort elements of a Linked List in C#

Here is the code:

    class Program
    {
        static void Main(string[] args)
        {
    //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            LinkedList l = new LinkedList();

Function to Display elements of the LinkedList from Kth integer in C#

Here is Code:
 class Program
    {
        static void Main(string[] args)
        {
    //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            LinkedList l = new LinkedList();

Function to Display elements of Linked List in C#

Here is the code:
 class Program
    {
        static void Main(string[] args)
        {
    //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            LinkedList l = new LinkedList();

Function to Remove Middle element of Linked List in C#

Here is the code:

class Program
    {
        static void Main(string[] args)
        {
    //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            LinkedList l = new LinkedList();

Function to Reverse Linked List in C#

Here is the Code:

class Program
    {
        static void Main(string[] args)
        {
       //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            LinkedList l = new LinkedList();

Function to remove an item from Linked List in C#

Here is the code:

 class Program
    {
        static void Main(string[] args)
        {
       //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            LinkedList l = new LinkedList();

Popular Posts