day13

链表

package datastructure;

/**
 * Linked list.
 * 
 * @author Michelle Min mitchellemin@163.com.
 */


public class LinkedList {
	
	/**
	 * An inner class.
	 */
	class Node{
	//如果内部类定义为静态,则与外部类平等,无包裹意义
	//内部类非静态,则不可有main
		/**
		 * The data.
		 */
		int data;
		
		/**
		 * The reference to the next node.
		 */
		Node next;
		//当前节点的下一个节点
		
		/**
		 * 
		 * The constructor
		 * 
		 * @param paraValue
		 * The data
		 * 
		 */
		public Node(int paraValue){
			data = paraValue;
			next = null;
		}//Of the constructor
	}//Of class Node
	
	/**
	 * The header node. The data is never used.
	 */
	Node header;
	
	/**
	 * 
	 * Construct an empty sequential list.
	 * 
	 */
	public LinkedList(){
		header = new Node(0);
		header.next = null;
		//这句=null是否可以删除?Node中已经定义了next=null
	}//Of the first constructor
	
	/**
	 * 
	 * Overrides the method claimed in Object, the superclass of any class.
	 * 
	 */
	public String toString(){
		String resultString = "";
		//使得resultString代表一个string
		
		if (header.next == null){
			return "empty";
		}//Of if
		
		Node tempNode = header.next;
		while (tempNode != null){
			resultString += tempNode.data + ", ";
			tempNode = tempNode.next;
		}//Of while
		
		return resultString;
	}//Of toString
	
	/**
	 * 
	 * Reset to empty. Free the space through garbage collection.
	 * 
	 */
	public void reset(){
		header.next = null;
	}//Of reset
	
	/**
	 * 
	 * Locate the given value. If it apppears in mutiple position, simply
	 * return the first one.
	 * 
	 * @param paraValue
	 * The given value.
	 * @return The position. -1 for not found.
	 * 
	 */
	public int locate(int paraValue){
		int tempPosition = -1;
		
		Node tempNode = header.next;
		int tempCurrentPosition = 0;
		while (tempNode != null){
			if (tempNode.data == paraValue){
				tempPosition = tempCurrentPosition;
				break;
			}//Of if
			
			tempNode = tempNode.next;
			tempCurrentPosition++;
		}//Of while
		
		return tempPosition;
	}//Of locate
	
	/**
	 * 
	 * Inser a value to a position. If the list is already full, do nothing.
	 * 
	 * @param paraPosition
	 * The given position.
	 * @param paraValue
	 * The given value.
	 * @return Success or not.
	 * 
	 */
	public boolean insert(int paraPosition, int paraValue){
		Node tempNode = header;
		Node tempNewNode;
		
		for (int i = 0; i < paraPosition; i++){
			if (tempNode.next == null){
				System.out.println("The position " + paraPosition + " is illegal.");
				return false;
			}//Of if
			
			tempNode = tempNode.next;
		}//Of for i
		
		//Construct a new node.
		tempNewNode = new Node(paraValue);
		
		//Now link them.
		tempNewNode.next = tempNode.next;
		tempNode.next = tempNewNode;
		
		return true;
	}//Of insert
	
	/**
	 * 
	 * Delete a value at a position.
	 * 
	 * @param paraPosition
	 * The given position.
	 * @return Sucess or not.
	 * 
	 */
	public boolean delete(int paraPosition){
		if (header.next == null){
			System.out.println("Cannut delete element from an empty list.");
			return false;
		}//Of if
		
		Node tempNode = header;
		
		for (int i = 0; i < paraPosition; i++){
			if (tempNode.next.next == null){
					System.out.println("The position " + paraPosition + " is illegal.");
					return false;
			}//Of if
				
			tempNode = tempNode.next;
		}//Of  for i
		
			tempNode.next = tempNode.next.next;
			
			return true;

	}//Of delete
		
		/**
		 * 
		 * The entrance of the program.
		 * 
		 * @param args
		 * Not used now.
		 * 
		 */
		public static void main(String args[]){
			LinkedList tempFirstList = new LinkedList();
			System.out.println("Initialized, the list is: " + tempFirstList.toString());
			
			for (int i = 0; i < 5; i++){
				tempFirstList.insert(0, 1);
			}//Of for i
			System.out.println("Inserted, the list is: " + tempFirstList.toString());
			
			tempFirstList.insert(6, 9);
			
			tempFirstList.delete(4);
			
			tempFirstList.delete(2);
			System.out.println("Deleted, the list is: " + tempFirstList.toString());
			
			tempFirstList.delete(0);
			System.out.println("Deleted, the list is: " + tempFirstList.toString());
			
			for (int i = 0; i < 5; i++){
				tempFirstList.delete(0);
				System.out.println("Looped delete, the list is: " + tempFirstList.toString());
			}//Of for i
			
			//全过程中都是在逐步变化,未保留最初计算出的tempFirstString
		}//Of main

}//Of LinkedList

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值