java单链表算法_Java单链表

/**

* This class implements a SinglyLinked List. This is done

* using SinglyLinkedList class and a LinkForLinkedList Class.

*

* A linked list is similar to an array, it hold values.

* However, links in a linked list do not have indexes. With

* a linked list you do not need to predetermine it's size as

* it grows and shrinks as it is edited. This is an example of

* a singly linked list. Elements can only be added/removed

* at the head/front of the list.

*

* @author Unknown

*

*/

class SinglyLinkedList{

/**Head refered to the front of the list */

private Node head;

/**

* Constructor of SinglyLinkedList

*/

public SinglyLinkedList(){

head = null;

}

/**

* This method inserts an element at the head

*

* @param x Element to be added

*/

public void insertHead(int x){

Node newNode = new Node(x); //Create a new link with a value attached to it

newNode.next = head; //Set the new link to point to the current head

head = newNode; //Now set the new link to be the head

}

/**

* Inserts a new node at a specified position

* @param head head node of the linked list

* @param data data to be stored in a new node

* @param position position at which a new node is to be inserted

* @return reference of the head of the linked list

*/

Node InsertNth(Node head, int data, int position) {

Node newNode = new Node();

newNode.data = data;

if (position == 0) {

newNode.next = head;

return newNode;

}

Node current = head;

while (--position > 0) {

current = current.next;

}

newNode.next = current.next;

current.next = newNode;

return head;

}

/**

* This method deletes an element at the head

*

* @return The element deleted

*/

public Node deleteHead(){

Node temp = head;

head = head.next; //Make the second element in the list the new head, the Java garbage collector will later remove the old head

return temp;

}

/**

* Checks if the list is empty

*

* @return true is list is empty

*/

public boolean isEmpty(){

return(head == null);

}

/**

* Prints contents of the list

*/

public void display(){

Node current = head;

while(current!=null){

System.out.print(current.getValue()+" ");

current = current.next;

}

System.out.println();

}

/**

* Main method

*

* @param args Command line arguments

*/

public static void main(String args[]){

SinglyLinkedList myList = new SinglyLinkedList();

System.out.println(myList.isEmpty()); //Will print true

myList.insertHead(5);

myList.insertHead(7);

myList.insertHead(10);

myList.display(); // 10(head) --> 7 --> 5

myList.deleteHead();

myList.display(); // 7(head) --> 5

}

}

/**

* This class is the nodes of the SinglyLinked List.

* They consist of a value and a pointer to the node

* after them.

*

* @author Unknown

*

*/

class Node{

/** The value of the node */

public int value;

/** Point to the next node */

public Node next; //This is what the link will point to

/**

* Constructor

*

* @param valuein Value to be put in the node

*/

public Node(int valuein){

value = valuein;

}

/**

* Returns value of the node

*/

public int getValue(){

return value;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值