首页 > 代码库 > 【算法数据结构Java实现】Java实现单链表
【算法数据结构Java实现】Java实现单链表
1.背景
单链表是最基本的数据结构,仔细看了很久终于搞明白了,差不每个部分,每个链都是node的一个对象。需要两个参数定位:一个是index,表示对象的方位。另一个是node的对象。
2.代码
node类
public class Node { protected Node next; protected int data; public Node(int data){ this.data=http://www.mamicode.com/data;>arraylist类
public class myArrayList { public Node first;//定义头结点 private int pos=0;//节点位置 public myArrayList(){ // this.first=null; } //插入一个头结点 public void addFirstNode(int data){ Node node=new Node(data); node.next=first; first=node; } //删除头结点 public Node deleteFirstNode(){ Node tempNode=first; first=tempNode.next; return tempNode; } // 在任意位置插入节点 在index的后面插入 public void add(int index, int data) { Node node = new Node(data); Node current = first; Node previous = first; while ( pos != index) { previous = current; current = current. next; pos++; } node. next = current; previous. next = node; pos = 0; } // 删除任意位置的节点 public Node deleteByPos( int index) { Node current = first; Node previous = first; while ( pos != index) { pos++; previous = current; current = current. next; } if(current == first) { first = first. next; } else { pos = 0; previous. next = current. next; } return current; } public void displayAllNodes() { Node current = first; while (current != null) { current.display(); System.out.println(); current = current. next; } } }
实现的main函数:
public class Main { public static void main(String args[]){ myArrayList ls=new myArrayList(); ls.addFirstNode(15); ls.addFirstNode(16); ls.add(1, 144); ls.add(2, 44); ls.deleteByPos(1); ls.displayAllNodes(); } }
实现结果:
16
44
15
参考:http://blog.csdn.net/tayanxunhua/article/details/11100097
/********************************
* 本文来自博客 “李博Garvin“
* 转载请标明出处:http://blog.csdn.net/buptgshengod
******************************************/
【算法数据结构Java实现】Java实现单链表
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。