導航:首頁 > 編程語言 > java鏈表創建

java鏈表創建

發布時間:2023-04-29 06:14:23

Ⅰ 急求!!使用java引用建造一個鏈表,可從指定數組依次輸入,鏈表成型後再進行遍歷列印。

java內置了鏈表,ArrayList或是LinkedList。
使用方法為:
public void readAndPrint(int[] input){
//LinkedList和ArrayList用法一樣,LinkedList偏向於鏈式(插入性能好)。而ArrayList查詢性能好。
LinkedList<Integer> data = new LinkedList<Integer>();
//用for each進行遍歷輸入,你要是用不慣可用for或while循環
for(int tmp : input){
data.add(tmp);
}
//進行輸出
for(int tmp : data){
System.out.println(tmp);
}
}

Ⅱ java如何實現鏈表

鏈表是一種重要的數據結構,在程序設計中佔有很重要的地位。C語言和C++語言中是用指針來實現鏈表結構的,由於Java語言不提供指針,所以有人認為在Java語言中不能實現鏈表,其實不然,Java語言比C和C++更容易實現鏈表結構。Java語言中的對象引用實際上是一個指針(本文中的指針均為概念上的意義,而非語言提供的數據類型),所以我們可以編寫這樣的類來實現鏈表中的結點。
class Node
{
Object data;
Node next;//指向下一個結點
}
將數據域定義成Object類是因為Object類是廣義超類,任何類對象都可以給其賦值,增加了代碼的通用性。為了使鏈表可以被訪問還需要定義一個表頭,表頭必須包含指向第一個結點的指針和指向當前結點的指針。為了便於在鏈表尾部增加結點,還可以增加一指向鏈表尾部的指針,另外還可以用一個域來表示鏈表的大小,當調用者想得到鏈表的大小時,不必遍歷整個鏈表。下圖是這種鏈表的示意圖:
鏈表的數據結構
我們可以用類List來實現鏈表結構,用變數Head、Tail、Length、Pointer來實現表頭。存儲當前結點的指針時有一定的技巧,Pointer並非存儲指向當前結點的指針,而是存儲指向它的前趨結點的指針,當其值為null時表示當前結點是第一個結點。那麼為什麼要這樣做呢?這是因為當刪除當前結點後仍需保證剩下的結點構成鏈表,如果Pointer指向當前結點,則會給操作帶來很大困難。那麼如何得到當前結點呢,我們定義了一個方法cursor(),返回值是指向當前結點的指針。類List還定義了一些方法來實現對鏈表的基本操作,通過運用這些基本操作我們可以對鏈表進行各種操作。例如reset()方法使第一個結點成為當前結點。insert(Object d)方法在當前結點前插入一個結點,並使其成為當前結點。remove()方法刪除當前結點同時返回其內容,並使其後繼結點成為當前結點,如果刪除的是最後一個結點,則第一個結點變為當前結點。
鏈表類List的源代碼如下:
import java.io.*;
public class List
{
/*用變數來實現表頭*/
private Node Head=null;
private Node Tail=null;
private Node Pointer=null;
private int Length=0;
public void deleteAll()
/*清空整個鏈表*/
{
Head=null;
Tail=null;
Pointer=null;
Length=0;
}
public void reset()
/*鏈表復位,使第一個結點成為當前結點*/
{
Pointer=null;
}
public boolean isEmpty()
/*判斷鏈表是否為空*/
{
return(Length==0);
}
public boolean isEnd()
/*判斷當前結點是否為最後一個結點*/
{
if(Length==0)
throw new java.lang.NullPointerException();
else if(Length==1)
return true;
else
return(cursor()==Tail);
}
public Object nextNode()
/*返回當前結點的下一個結點的值,並使其成為當前結點*/
{
if(Length==1)
throw new java.util.NoSuchElementException();
else if(Length==0)
throw new java.lang.NullPointerException();
else
{
Node temp=cursor();
Pointer=temp;
if(temp!=Tail)
return(temp.next.data);
else
throw new java.util.NoSuchElementException();
}
}
public Object currentNode()
/*返回當前結點的值*/
{
Node temp=cursor();
return temp.data;
}

public void insert(Object d)
/*在當前結點前插入一個結點,並使其成為當前結點*/
{
Node e=new Node(d);
if(Length==0)
{
Tail=e;
Head=e;
}
else
{
Node temp=cursor();
e.next=temp;
if(Pointer==null)
Head=e;
else
Pointer.next=e;
}
Length++;
}
public int size()
/*返回鏈表的大小*/
{
return (Length);
}
public Object remove()
/*將當前結點移出鏈表,下一個結點成為當前結點,如果移出的結點是最後一個結點,則第一個結點成為當前結點*/
{
Object temp;
if(Length==0)
throw new java.util.NoSuchElementException();
else if(Length==1)
{
temp=Head.data;
deleteAll();
}
else
{
Node cur=cursor();
temp=cur.data;
if(cur==Head)
Head=cur.next;
else if(cur==Tail)
{
Pointer.next=null;
Tail=Pointer;
reset();
}
else
Pointer.next=cur.next;
Length--;
}
return temp;
}
private Node cursor()
/*返回當前結點的指針*/
{
if(Head==null)
throw new java.lang.NullPointerException();
else if(Pointer==null)
return Head;
else
return Pointer.next;
}
public static void main(String[] args)
/*鏈表的簡單應用舉例*/
{
List a=new List ();
for(int i=1;i<=10;i++)
a.insert(new Integer(i));
System.out.println(a.currentNode());
while(!a.isEnd())
System.out.println(a.nextNode());
a.reset();
while(!a.isEnd())
{
a.remove();
}
a.remove();
a.reset();
if(a.isEmpty())
System.out.println("There is no Node in List \n");
System.in.println("You can press return to quit\n");
try
{
System.in.read();
//確保用戶看清程序運行結果
}
catch(IOException e)
{}
}
}
class Node
/*構成鏈表的結點定義*/
{
Object data;
Node next;
Node(Object d)
{
data=d;
next=null;
}
}
讀者還可以根據實際需要定義新的方法來對鏈表進行操作。雙向鏈表可以用類似的方法實現只是結點的類增加了一個指向前趨結點的指針。
可以用這樣的代碼來實現:
class Node
{
Object data;
Node next;
Node previous;
Node(Object d)
{
data=d;
next=null;
previous=null;
}
}
當然,雙向鏈表基本操作的實現略有不同。鏈表和雙向鏈表的實現方法,也可以用在堆棧和隊列的實現中,這里就不再多寫了,有興趣的讀者可以將List類的代碼稍加改動即可。

希望對你有幫助。

Ⅲ java怎麼定義鏈表組

可以,給你個實例——
import java.util.ArrayList;
import java.util.List;

public class Two {
public static void main(String[] args) {
List[] list = new List[3];
for (int i=0; i<list.length; i++) {
list[i] = new ArrayList();
}
list[1].add("sss");
System.out.println(list[1].get(0));
}
}

Ⅳ java中如何創建一個鏈表望能給我詳細的代碼。加點注釋。謝謝

//如果感興趣的話,可以把下面的改成泛型的也就是這樣的

//一個學生的類
public class Stu(){
String name;
int age;
public Stu(String name,int age){
this.name=name;
this.age=age;
}
}

//創建兩個學生的對像
Stu stu1=new Stu("weiwie",24);
Stu stu2=new Stu("xiaoqiang",25);

//創建集合類,存放的是Stu對像,這樣的聲明只能存Stu對像
List <腔液擾Stu> list=new ArrayList<Stu>();
//埋早存數據
list.add(stu1);
list.add(stu2);
//遍歷
for(int i=0;i<list.size();i++){
//向下轉型方便了,取出來的就是Stu對像
Stu stu=list.get(i);
}

List list=new ArrayList();
list.add("對像");
遍歷
for(int i=0;i<list.size();i++){
//需要強轉
String str=(String)list.get(i);
得到你存放的數據
}

Map map=new HashMap();
//存值
map.put("one","對像");
//取值
String str=(String)map.get("one");

Set set=new HashSet();
//存值
set.add("對像");
//需要用這個對像遍歷
Iterator iter=set.iterator();
while(iter.hasNext()){
//取伍旦值
String Str=(String)iter.next();
}

Ⅳ JAVA 鏈表問題

while (current != null);
{
【在這里提示拿悉current只能為空指針】b.add(current.data);
current = current.next;
}
你的while循環後慶敏納面多了一個分號,導致while循環是一個空譽沒實現,而後面的是一個代碼塊而已

Ⅵ java中如何創建一個鏈表望能給我詳細的代碼。加點注釋。謝謝

//如果感興趣的話,可以把下面的改成泛型的也就是這樣的

//一個學生的類
public class Stu(){
String name;
int age;
public Stu(String name,int age){
this.name=name;
this.age=age;
}
}

//創建兩個學生的對像
Stu stu1=new Stu("weiwie",24);
Stu stu2=new Stu("xiaoqiang",25);

//創建集合類,存放的是Stu對像,這樣的聲明只能存Stu對像
List <Stu> list=new ArrayList<Stu>();
//存數據
list.add(stu1);
list.add(stu2);
//遍歷
for(int i=0;i<list.size();i++){
//向下轉型方便了,取出來的就是Stu對像
Stu stu=list.get(i);
}

List list=new ArrayList();
list.add("對像");
遍歷
for(int i=0;i<list.size();i++){
//需要強轉
String str=(String)list.get(i);
得到你存放的數據
}

Map map=new HashMap();
//存值
map.put("one","對像");
//取值
String str=(String)map.get("one");

Set set=new HashSet();
//存值
set.add("對像");
//需要用這個對像遍歷
Iterator iter=set.iterator();
while(iter.hasNext()){
//取值
String Str=(String)iter.next();
}

Ⅶ 在Java中如何實現雙向鏈表

雙向鏈表:就是有雙向指針,即雙向的鏈域。x0dx0a鏈結點的結構:x0dx0a┌────┬────┬────────┐x0dx0a│ data │ next │ previous │x0dx0a└────┴────┴────────┘x0dx0a雙向鏈表不必是雙端鏈表(持有對最後一個鏈結點的脊賣瞎引用),雙端配盯鏈表插入時是雙向的。x0dx0a有兩條鏈:一條從頭到尾,一條從尾到頭,刪除遍歷時也是雙向的。x0dx0a/**x0dx0a * 雙向鏈表x0dx0a */x0dx0apublic class DoublyLinkedList {x0dx0a private Link head; //首結點x0dx0a private Link rear; //尾部指針x0dx0a public DoublyLinkedList() { }x0dx0a public T peekHead() {x0dx0a if (head != null) {x0dx0a return head.data;x0dx0a }x0dx0a return null;x0dx0a }x0dx0a public boolean isEmpty() {x0dx0a return head == null;x0dx0a }x0dx0a public void insertFirst(T data) {// 插入 到 鏈頭x0dx0a Link newLink = new Link(data);x0dx0a if (isEmpty()) {//為空時,第1次插入的櫻空新結點為尾結點x0dx0a rear = newLink;x0dx0a } else {x0dx0a head.previous = newLink; //舊頭結點的上結點等於新結點x0dx0a }x0dx0a newLink.next = head; //新結點的下結點舊頭結點x0dx0a head = newLink; //賦值後,頭結點的下結點是舊頭結點,上結點nullx0dx0a }x0dx0a public void insertLast(T data) {//在鏈尾 插入x0dx0a Link newLink = new Link(data);x0dx0a if (isEmpty()) {x0dx0a head = newLink;x0dx0a } else {x0dx0a rear.next = newLink;x0dx0a }x0dx0a newLink.previous = rear;x0dx0a rear = newLink; //賦值後,尾結點的上結點是舊尾結點,下結點nullx0dx0a }x0dx0a public T deleteHead() {//刪除 鏈頭x0dx0a if (isEmpty()) return null;x0dx0a Link temp = head;x0dx0a head = head.next; //變更首結點,為下一結點x0dx0a if (head != null) {x0dx0a head.previous = null;x0dx0a } else {x0dx0a rear = null;x0dx0a }x0dx0a return temp.data;x0dx0a }x0dx0a public T deleteRear() {//刪除 鏈尾x0dx0a if (isEmpty()) return null;x0dx0a Link temp = rear;x0dx0a rear = rear.previous; //變更尾結點,為上一結點x0dx0a if (rear != null) {x0dx0a rear.next = null;x0dx0a } else {x0dx0a head = null;x0dx0a }x0dx0a return temp.data;x0dx0a }x0dx0a public T find(T t) {//從頭到尾findx0dx0a if (isEmpty()) {x0dx0a return null;x0dx0a }x0dx0a Link find = head;x0dx0a while (find != null) {x0dx0a if (!find.data.equals(t)) {x0dx0a find = find.next;x0dx0a } else {x0dx0a break;x0dx0a }x0dx0a }x0dx0a if (find == null) {x0dx0a return null;x0dx0a }x0dx0a return find.data;x0dx0a }x0dx0a public T delete(T t) {x0dx0a if (isEmpty()) {x0dx0a return null;x0dx0a }x0dx0a Link current = head;x0dx0a while (!current.data.equals(t)) {x0dx0a current = current.next;x0dx0a if (current == null) {x0dx0a return null;x0dx0a }x0dx0a }x0dx0a if (current == head) {x0dx0a head = head.next;x0dx0a if (head != null) {x0dx0a head.previous = null;x0dx0a }x0dx0a } else if (current == rear) {x0dx0a rear = rear.previous;x0dx0a if (rear != null) {x0dx0a rear.next = null;x0dx0a }x0dx0a } else {x0dx0a //中間的非兩端的結點,要移除currentx0dx0a current.next.previous = current.previous;x0dx0a current.previous.next = current.next;x0dx0a }x0dx0a return current.data;x0dx0a }x0dx0a public boolean insertAfter(T key, T data) {//插入在key之後, key不存在return falsex0dx0a if (isEmpty()) {x0dx0a return false;x0dx0a }x0dx0a Link current = head;x0dx0a while (!current.data.equals(key)) {x0dx0a current = current.next;x0dx0a if (current == null) {x0dx0a return false;x0dx0a }x0dx0a }x0dx0a Link newLink = new Link(data);x0dx0a if (current == rear) {x0dx0a rear = newLink;x0dx0a } else {x0dx0a newLink.next = current.next;x0dx0a current.next.previous = newLink;x0dx0a }x0dx0a current.next = newLink;x0dx0a newLink.previous = current;x0dx0a return true;x0dx0a }x0dx0a public void displayList4Head() {//從頭開始遍歷x0dx0a System.out.println("List (first-->last):");x0dx0a Link current = head;x0dx0a while (current != null) {x0dx0a current.displayLink();x0dx0a current = current.next;x0dx0a }x0dx0a }x0dx0a public void displayList4Rear() {//從尾開始遍歷x0dx0a System.out.println("List (last-->first):");x0dx0a Link current = rear;x0dx0a while (current != null) {x0dx0a current.displayLink();x0dx0a current = current.previous;x0dx0a }x0dx0a }x0dx0ax0dx0a class Link {//鏈結點x0dx0a T data; //數據域x0dx0a Link next; //後繼指針,結點 鏈域x0dx0a Link previous; //前驅指針,結點 鏈域x0dx0a Link(T data) {x0dx0a this.data = data;x0dx0a }x0dx0a void displayLink() {x0dx0a System.out.println("the data is " + data.toString());x0dx0a }x0dx0a }x0dx0a public static void main(String[] args) {x0dx0a DoublyLinkedList list = new DoublyLinkedList();x0dx0a list.insertLast(1);x0dx0a list.insertFirst(2);x0dx0a list.insertLast(3);x0dx0a list.insertFirst(4);x0dx0a list.insertLast(5);x0dx0a list.displayList4Head();x0dx0a Integer deleteHead = list.deleteHead();x0dx0a System.out.println("deleteHead:" + deleteHead);x0dx0a list.displayList4Head();x0dx0a Integer deleteRear = list.deleteRear();x0dx0a System.out.println("deleteRear:" + deleteRear);x0dx0a list.displayList4Rear();x0dx0a System.out.println("find:" + list.find(6));x0dx0a System.out.println("find:" + list.find(3));x0dx0a System.out.println("delete find:" + list.delete(6));x0dx0a System.out.println("delete find:" + list.delete(1));x0dx0a list.displayList4Head();x0dx0a System.out.println("----在指定key後插入----");x0dx0a list.insertAfter(2, 8);x0dx0a list.insertAfter(2, 9);x0dx0a list.insertAfter(9, 10);x0dx0a list.displayList4Head();x0dx0a }x0dx0a}

Ⅷ 用Java語言實現單向鏈表

1.先定義一個節點類

package com.buren;

public class IntNode {
//定義一個節點類

int
info;
//定義屬性,節點中的值
IntNode next;
//定義指向下一個節點的屬性

public IntNode(int
i){ //構造一個next為空的節點
this(i,null);
}

public IntNode(int i,IntNode
n){ //構造值為i指向n的節點
info=i;
next=n;
}

}

2.再定義一個鏈表類,這是主要部分

package com.buren;

public class IntSLList {

private IntNode head,tail;
//定義指向頭結點和尾結點的指針,
//如果大家看著這個不像指針的話,那就需要對指針有更深刻的了解

public
IntSLList(){
//定義一個空節點
head=tail=null;
}

public boolean
isEmpty(){
//判斷節點是否為空
return
head==null;
//這行代碼看起來似乎很神奇,其實真的很神奇,偶是服了
}

public void addToHead(int el){
//將el插入到頭結點前
head=new
IntNode(el,head);
//將節點插入到頭結點前,作為新的投節點
if(head==tail){
//給空鏈表插入節點時
tail=head;
//頭結點和尾結點指向同一個節點
}
}

public void addToTail(int
el){
//向鏈表的尾部增加結點
if(!isEmpty()){
//判斷鏈表是否為空
tail.next=new
IntNode(el);
//新建立一個值為el的節點,將鏈表的尾結點指向新節點
tail=tail.next;
//更新尾指針的指向
}else{
head=tail=new
IntNode(el);
//如果鏈表為空,新建立一個節點,將頭尾指針同時指向這個節點
}
}

public int
deleteFromHead(){
//刪除頭結點,將節點信息返回
int
el=head.info;
//取出節點信息
if(head==tail){
//如果鏈表中只有一個節點
head=tail=null;
//刪除這一個節點
}else{
head=head.next;
//如果鏈表中不止一個節點,將頭結點的下一個節點作為頭結點
}
return
el;
//返回原頭結點的值
}

public int
deleteFromTail(){
//刪除尾結點,返回尾結點的信息
int
el=tail.info;
//取出尾結點的值
if(head==tail){
// 如果鏈表中只有一個節點
head=tail=null;
//刪除這個節點
}else{
IntNode
temp;
//定義中間變數
for(temp=head;temp.next!=tail;temp=temp.next);
//找出尾結點的前一個節點,注意最後的分號,

//這個for循環是沒有循環體的,目的在於找出尾結點的前一個節點

//在整個程序中用了很多次這樣的寫法,相當經典啊
tail=temp;
//將找出來的節點作為尾結點,刪除原來的尾結點
tail.next=null;
//將新尾結點的指向設為空
}
return
el;
//返回原尾結點的信息
}

public void
printAll(){
//列印鏈表中所有節點的信息
if(isEmpty()){
//如果鏈表為空
System.out.println("This
list is
empty!");
//輸出提示信息
return;
//返回到調用的地方
}
if(head==tail){
//當鏈表中只有一個節點時
System.out.println(head.info);
//輸出這個節點的信息,就是頭結點的信息
return;
}
IntNode
temp;
//定義一個中間變數
for(temp=head;temp!=null;temp=temp.next){
//遍歷整個鏈表
System.out.print(temp.info+"
");
//輸出每個節點的信息
}
System.out.println();
//輸出一個換行,可以沒有這一行
}

public boolean isInList(int
el){
//判斷el是否存在於鏈表中
IntNode
temp;
//定義一個中間變數
for(temp=head;temp!=null
&&
temp.info!=el;temp=temp.next);
//將el找出來,注意最後的分
return
temp!=null;
// 如果存在返回true,否則返回flase,這兩行代碼很有思想
}

public void delete(int
el){
//刪除鏈表中值為el的節點
if(head.info==el
&&
head==tail){
//如果只有一個節點,並且節點的值為el
head=tail=null;
//刪除這個節點
}else
if(head.info==el){
// 不止一個節點,而頭結點的值就是el
head=head.next;
//刪除頭結點
}else{
IntNode
pred,temp;
//定義兩個中間變數
for(pred=head,temp=head.next;temp.info!=el
&&
temp.next!=null;pred=pred.next,temp=temp.next);
//跟上面的類似,自己琢磨吧,也是要注意最後的分號
pred.next=temp.next;
//將temp指向的節點刪除,最好畫一個鏈表的圖,有助於理解
if(temp==tail){
//如果temp指向的節點是尾結點
tail=pred;
//將pred指向的節點設為尾結點,
}
}
}

//下面這個方法是在鏈表中值為el1的節點前面插入一個值為el2的節點,
//用類似的思想可以再寫一個在鏈表中值為el1的節點後面插入一個值為el2的節點
public boolean insertToList(int el1,int
el2){
//定義一個插入節點的方法,插入成功返回true,否則返回false
IntNode
pred,temp; //定義兩個中間變數
if(isEmpty()){
//判斷鏈表是否為空
return
false;
//如果鏈表為空就直接返回false
}
if(head.info==el1
&&
head==tail){
//如果鏈表中只有一個節點,並且這個節點的值是el1
head=new
IntNode(el2,head);
//新建立一個節點
return
true;
}else if(head.info==el1){
IntNode t=new
IntNode(el2);
t.next=head;
head=t;
return
true;
}else{
for(pred=head,temp=head.next;temp!=null
&&
temp.info!=el1;pred=pred.next,temp=temp.next);
if(temp!=null){
IntNode
a=new IntNode(el2);
pred.next=a;
a.next=temp;
return
true;
}else{
System.out.println(el1+"
NOT EXEISTS!");
return
false;
}
}
}

3.下面是測試代碼
public static void main(String[] args){
IntSLList test=new
IntSLList();

//test.addToHead(7);
test.addToTail(7);

System.out.println(test.insertToList(7,5));
test.printAll();
System.out.println(test.isInList(123));
}
}

閱讀全文

與java鏈表創建相關的資料

熱點內容
subsample演算法 瀏覽:893
蘋果免費看書app哪個最好 瀏覽:880
c語言加密怎麼弄 瀏覽:837
c語言編譯的錯誤提示 瀏覽:763
驗機蘋果app哪個最好 瀏覽:663
光遇國際服安卓如何購買禮包 瀏覽:52
163app怎麼下載 瀏覽:244
電腦程序員下場 瀏覽:42
編譯原理ll1文法判斷 瀏覽:723
qt用vs2015編譯 瀏覽:547
結婚日子最好的演算法 瀏覽:791
安卓怎麼把數據傳到蘋果里 瀏覽:501
編譯器標識 瀏覽:789
編程珠璣第三章 瀏覽:782
windows如何開啟tftp伺服器 瀏覽:107
歐姆龍plc編程指令表 瀏覽:186
程序員遠程收入不穩定 瀏覽:860
演算法原理怎麼寫 瀏覽:469
有個動漫女主藍頭發是程序員 瀏覽:998
雲伺服器資源評估 瀏覽:882