2017.12.20T19_B3.1

Posted 晓……晓

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017.12.20T19_B3.1相关的知识,希望对你有一定的参考价值。

package com.xdf.linkdemo;

/**  * 单链表  */ public class MyLink {  // 存储链表的值  private int data;  private MyLink next;// 指针指向下一个数据

 public MyLink(int i) { // 创建带参构造   data = i;  }

 // 向链表中增加值  public void add(MyLink link) {   link.next = next;   next = link;

 }

 private void append(MyLink myLink) {   MyLink x = this;   while (x.next != null) {    x = x.next;   }   x.next = myLink;

 }

 private void show() {   MyLink x = this;   while (x != null) {    System.out.println(x.data);    x = x.next;   }

 }

 public static void main(String[] args) {   MyLink link = new MyLink(1);   link.append(new MyLink(10));// 拼接   link.append(new MyLink(20));// 拼接   link.append(new MyLink(50));// 拼接   link.add(new MyLink(6)); // 新增   link.show();

 }

以上是关于2017.12.20T19_B3.1的主要内容,如果未能解决你的问题,请参考以下文章

2017.12.1T19_B2_1

2017.12.1T19_B2_4

2017.12.6T19_B2_3.3

2017.12.1T19_B2_4——2

2017.12.1T19_B2_5zuoye

2017.12.1T19_B2_4zuoye