博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java容器---------手工实现Linkedlist 链表
阅读量:5051 次
发布时间:2019-06-12

本文共 1402 字,大约阅读时间需要 4 分钟。

第一版:增加add方法

package cn.zxg.collection; public class Node {
Node previous;//上个节点 Node next;//下个节点 Object element;//自己的数据 public Node(Node previous,Node next,Object element){
this.previous=previous; this.next=next; this.element=element; } public Node(Object element){
this.element=element; } }
package cn.zxg.collection; /**  * 自定义一个链表,增加一个add方法  */ public class SxtLinkList {
private Node first; private Node last; private int size; public void add(Object obj){
Node node=new Node(obj); if(first==null){
first=node; last=node; }else {
node.previous=last; node.next=null; last.next=node; last=node; } } public String toString() {
StringBuilder sb=new StringBuilder(); sb.append("["); Node temp=first; while (temp!=null){
sb.append(temp.element+","); temp=temp.next; } sb.setCharAt(sb.length()-1,']'); return sb.toString(); } public static void main(String[] args) {
SxtLinkList list=new SxtLinkList(); list.add("a"); list.add("b"); list.add("c"); System.out.println(list.toString()); } } 第二版、添加get方法,传入索引返回对应的内容

转载于:https://www.cnblogs.com/zzzao/p/10924985.html

你可能感兴趣的文章
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
查看>>
Linux 常用命令——cat, tac, nl, more, less, head, tail, od
查看>>
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
多变量微积分笔记24——空间线积分
查看>>
poi操作oracle数据库导出excel文件
查看>>
(转)Intent的基本使用方法总结
查看>>
Windows Phone开发(24):启动器与选择器之发送短信
查看>>
JS截取字符串常用方法
查看>>
Google非官方的Text To Speech和Speech Recognition的API
查看>>
stdext - A C++ STL Extensions Libary
查看>>
Django 内建 中间件组件
查看>>
bootstrap-Table服务端分页,获取到的数据怎么再页面的表格里显示
查看>>