溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用Java 8實(shí)現(xiàn)任意參數(shù)的單鏈表

發(fā)布時(shí)間:2020-10-28 15:24:41 來(lái)源:億速云 閱讀:148 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)使用Java 8實(shí)現(xiàn)任意參數(shù)的單鏈表,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

1、實(shí)現(xiàn)功能

1)add():鏈表末尾添加元素;
2)pop():移除鏈表尾部元素;
3)insert():指定索引處添加元素;
4)delete():指定索引處刪除元素;
5)getSize():獲取鏈表當(dāng)前長(zhǎng)度;
6)display():展示鏈表當(dāng)前元素。

2、代碼

package DataStructure;

/**
 * @author: Inki
 * @email: inki.yinji@qq.com
 * @create: 2020 1024
 * @last_modify: 2020 1025
 */

public class MySingleLinkedList <AnyType> {

 /**
  * Only used to store the head node.
  */
 private SingleNode<AnyType> head = new SingleNode(new Object());

 /**
  * The single linked list current size.
  */
 private int size = 0;

 /**
  * Add element to the end of the list.
  * @param:
  *  paraVal: The given value.
  */
 public void add(AnyType paraVal) {
  insert(size, paraVal);
 }//Of add

 /**
  * Pop the last element.
  * @return:
  *  The popped value.
  */
 public AnyType pop(){
  return delete(size - 1);
 }//Of pop

 /**
  * Insert element at specified index.
  * @param:
  *  paraIdx: The given index.
  *  paraVal: The given value.
  */
 public void insert(int paraIdx, AnyType paraVal) {

  if (paraIdx > size) {
   throw new IndexOutOfBoundsException("The index error.");
  }//Of if

  SingleNode <AnyType> tempNode = head;
  int i = 0;
  while (i++ < paraIdx) {
   tempNode = tempNode.next;
  }//Of while

  SingleNode<AnyType> paraNode = new SingleNode <>(paraVal);
  paraNode.next = tempNode.next;
  tempNode.next = paraNode;
  size++;
 }//of add

 /**
  * Delete the element at specified index.
  * @param:
  *  paraIdx: The given index of element to delete.
  * @return:
  *  The deleted value.
  */
 public AnyType delete(int paraIdx) {
  if (size == 0) {
   throw new RuntimeException("The single linked list is empty.");
  }//Of if

  if (size <= paraIdx) {
   throw new IndexOutOfBoundsException("The index error.");
  }//Of if

  SingleNode <AnyType> retNode = head;
  int i = 0;
  while (i++ < paraIdx) {
   retNode = retNode.next;
  }//Of while

  retNode.next = retNode.next.next;

  size--;
  return retNode.val;
 }//Of delete

 /**
  * Get the current size of the single linked list.
  * @return:
  *  The current size of the single linked list.
  */
 public int getSize() {
  return size;
 }//Of getSize

 /**
  * Display the single linked list.
  */
 public void display() {
  if (size == 0) {
  throw new RuntimeException("The single linked list is empty.");
  }//Of if
  
  System.out.print("The single linked list is:\n[");
  SingleNode <AnyType> tempNode = head;
  int i = 0;
  while (i++ < size - 1) {
   tempNode = tempNode.next;
   System.out.printf("%s, ", tempNode.val);
  }//Of while
  System.out.printf("%s]\n", tempNode.next.val);
 }//Of display

 /**
  * The main function.
  */
 public static void main(String[] args) {
  MySingleLinkedList <Character> test = new MySingleLinkedList<>();
  test.add('a');
  test.add('b');
  test.insert(0, 'c');
  test.add('d');
  test.insert(0, '5');
  test.delete(4);
  test.pop();
  test.add('+');
  test.display();
  System.out.println(test.getSize());
 }//Of main

}//Of class MySingleLinkedList

class SingleNode <AnyType>{

 /**
  * The value.
  */
 AnyType val;

 /**
  * The next node.
  */
 SingleNode<AnyType> next;

 /**
  * The first constructor.
  * @param
  *  paraVal: The given value.
  */
 SingleNode (AnyType paraVal) {
  val = paraVal;
 }//The first constructor

}//Of class SingleNode

上述就是小編為大家分享的使用Java 8實(shí)現(xiàn)任意參數(shù)的單鏈表了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI