java program developing

java program developing

how to write a java program that implementing a double link list and use it to insert a list of names and print them to screen.

View Answers

March 29, 2012 at 1:28 PM

 class DoublyLinkedNode {
  Object data;
  DoublyLinkedNode prev;
  DoublyLinkedNode next;

  public DoublyLinkedNode( ) { }
   public DoublyLinkedNode( Object data, DoublyLinkedNode prev, DoublyLinkedNode next ) {
    this.data = data;
    this.prev = prev;
    this.next = next;
  }
   public DoublyLinkedNode( Object data ) {
    this( data, null, null );
  }
}

public class DoublyLinkedList {

  DoublyLinkedNode head;
  DoublyLinkedNode tail;

  public DoublyLinkedList( ) { }
  public void insertAfter( DoublyLinkedNode node, DoublyLinkedNode newNode ) {
    newNode.prev = node;
    newNode.next = node.next;
    if( node.next == null ) {
      tail = newNode;
    }
    else {
      node.next.prev = newNode;
    }
    node.next = newNode;
  }

  public void insertBefore( DoublyLinkedNode node, DoublyLinkedNode newNode ) {
    newNode.prev = node.prev;
    newNode.next = node;
    if( node.prev == null ) {
      head = newNode;
    } else {
      node.prev.next = newNode;
    }
     node.prev = newNode;
  }
   public void insertFront( DoublyLinkedNode newNode ) {
     if( head == null ) {
      head = newNode;
      tail = newNode;
      newNode.prev = null;
      newNode.next = null;
     }
     else {
      insertBefore( head, newNode );
    }
  }
   public void insertEnd( DoublyLinkedNode newNode ) {
     if ( tail == null ) {
      insertFront( newNode );
    }
    else {
      insertAfter( tail, newNode );
    }
  }

  public void remove( DoublyLinkedNode node ) {
    if( node.prev == null ) {
      head = node.next; 
    }
    else {
      node.prev.next = node.next;
    }
    if( node.next == null ) {
      tail = node.prev; 
    } 
    else {
      node.next.prev = node.prev;
    }
  }
   public void removeFront( ) {
    if( head != null ) {
      remove( head );
    }
  }
   public void removeEnd( ) {
    if( tail != null ) {
      remove( tail );
    }
  }
   public DoublyLinkedNode get( Object data ) {
     for( DoublyLinkedNode cursor = head; cursor != null; cursor = cursor.next ) {
      if( cursor.data.equals( data ) ) {
        return cursor;
      }
    }
     return null;
  }
   public static void main( String[] args ) {
    DoublyLinkedList list = new DoublyLinkedList( );
    DoublyLinkedNode node1 = new DoublyLinkedNode( "A" );
    DoublyLinkedNode node2 = new DoublyLinkedNode( "B" );
    DoublyLinkedNode node3 = new DoublyLinkedNode( "C" );
    DoublyLinkedNode node4 = new DoublyLinkedNode( "D" );

    list.insertFront( node1 );
    list.insertEnd( node2 );
    list.insertEnd( node3 );
    list.insertEnd( node4 );
    for( DoublyLinkedNode i = list.head; i != null; i = i.next ) {
      System.out.println( i.data ); 
    } 
  }
}









Related Tutorials/Questions & Answers:
java program developing
java program developing  how to write a java program that implementing a double link list and use it to insert a list of names and print them to screen.    class DoublyLinkedNode { Object data; DoublyLinkedNode
Developing a program to test
Developing a program to test       Developing a program to test Given below program is to test the script : Qunit.html <
Advertisements
developing skills in java , j2ee - Java Beginners
developing skills in java , j2ee   How to understand or to feel the flow of java or j2ee programme what is the way to become a expert programmer can you please give me tips thanking you
Java How to Program
Java program on your computer and also how to write and run your first java... bytecode into machine language on the target processor. Java How to Program... follow the given steps of Java How to Program: Download and setup a Java
Create First Program
program. For developing a java program you just need  a simple text editor...) where your program is saved. Java uses the "javac" command to compile... program (Type java createfirstprogram). It will print  "Welcome
java program for
java program for   java program for printing documents,images and cards
a Java program
a Java program    Write a Java program to print even numbers from 2 to 1024? Write a Java program to print ? My Name is Mirza? 100 times? Write a Java program to print Fibonacci Series? Write a Java program to reverse a number
Java Program
Java Program  A Java Program that print the data on the printer but buttons not to be printed
java program
java program  write a program to print 1234 567 89 10
java program
java program  Write a program to demonstrate the concept of various possible exceptions arising in a Java Program and the ways to handle them.  ... in Java
java program
java program  write java program for constructor,overriding,overriding,exception handling
java program
java program  write a java program to display array list and calculate the average of given array
Java Program
Java Program  java program to insert row in excel sheet after identifying an object
java program
java program  java program to implement the reflection of a particular class details like constructor,methods and fields with its modifiers
java program
java program  Write a java program to find the number of Positive numbers in m* n matrix
java program
java program  Write a program to create an applet and display The message "welcome to java
java program
java program  hi friends how to make a java program for getting non prime odd numbers in a given series
java program
java program  how to write an addition program in java without using arithematic operator
java program
java program  write a java program to display array list and calculate the average of given array
java program
java program  Write a java program to do matrix addition operation On two given matrices
java program
java program   Write a program to find the difference between sum of the squares and the square of the sums of n numbers
java program
java program  write a program to create text area and display the various mouse handling events
java program
java program  Develop the program calculatePipeArea. It computes the surface area of a pipe, which is an open cylinder. The program accpets three values: the pipes inner radius, its length, and the thickness of its wall
java program
java program  . Develop the program calculatePipeArea. It computes the surface area of a pipe, which is an open cylinder. The program accpets three values: the pipes inner radius, its length, and the thickness of its wall
java program
java program  . Write a program which performs to raise a number to a power and returns the value. Provide a behavior to the program so as to accept any type of numeric values and returns the results
Java program
Java program  Write a program which performs to raise a number to a power and returns the value. Provide a behavior to the program so as to accept any type of numeric values and returns the results
program in java
program in java  write a reverse program in java using string buffer.the input and out put as follows. input- hi good mornig out put-ih doog ginrom
java program
java program  write a java program to compute area of a circle.square,rectangle.triangle,volume of a sphere ,cylinder and perimeter of cube using method over riding
java program
java program  write a java program to compute area of a circle.square,rectangle.triangle,volume of a sphere ,cylinder and perimeter of cube using method over riding
java program
java program   A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A java program to display above triangle
java program
java program  write a program to create server and client such that server receives data from client using BuuferedReader and sends reply to client using PrintStream
java program
java program  write a program to read 10 numbers from user and store it in a array. display the maximum n minimum number in the array
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
Java Program
Java Program  I want to Write a program in JAVA to display to create a class called MATRIX using a two-dimensional array of integers. Perform the addition and subtraction of two matrices. Help me
java program
java program  i want a applet program that accepts two input strings using tag and concatenate the strings and display it in status window. please give mi he code for this in core java
java program
java program  write a java program to read a file which hold email address validate email address tohave formate @.* and replace all .com email address
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
java program
java program  write a java program to create an array of size 10 by taking input from bufferreader and find out the average of array elements from that array
java program
java program  i want a applet program that accepts two input strings using tag and concatenate the strings and display it in status window. please give mi he code for this in core java
java program
java program  i want a applet program that accepts two input strings using tag and concatenate the strings and display it in status window. please give mi he code for this in core java
java program
java program  Write a program that computes loan payments. The loan can be a car loan, a student loan, or a home mortgage loan. The program lets the user enter the interest rate, number of years, loan amount, and displays
java program
java program  . Develop a program that computes the distance a boat travels across a river, given the width of the river, the boat's speed perpendicular to the river, and the river's speed. Speed is distance/time
java program
java program  write a program that accepts only 3 integer values as command line arguments.print the values enter by the user. handle ArrayIndexOutofbounds exception and number format exception by providing appropriate message
java program
java program  write a program showing two threads working simultanously upon two objects(in theater one object "cut the ticket" andsecond object "show is the seat
java program
java program  write a java program to display the following output. [email protected] 1] Symbol @ cannot come for first letter 2] @ symbol only come at one time. 3] .com should be come for after the mail id
A java Program
A java Program  Write a java program, which provides a text area with horizontal and vertical scrollbar.Type some lines in the text area and use scrollbars to move the text within the text area.Read a word in a text field
a java program
a java program  Write a java program that accepts positive numbers... through the link may, this will be helpful for you http://www.roseindia.net/java/thread/java-multithreading-example.shtml Thanks
java program
java program  Develop the program calculateHeight, which computes the height that a rocket reaches in a given amount of time. If the rocket accelerates at a constant rate g, it reaches a speed of g â?¢ t in t time units
java program
java program  Develop the program calculateHeight, which computes the height that a rocket reaches in a given amount of time. If the rocket accelerates at a constant rate g, it reaches a speed of g ? t in t time units
java program
java program  Hi, can any one solve this program for me. Q.In a knock-out tennis tournament(Singles). (A)N players participate. (B)construct a data structure to represent the results optimized to find the winners. (C

Ads