数据结构----顺序表与单链表(JAVA)

下面为学习顺序表和单链表的一些基本操作函数:

 1 public class SeqList<T> extends Object {
 2     protected int n;
 3     protected Object[] element;
 4 
 5     public SeqList(int length) {
 6         this.element = new Object[length];
 7         this.n = 0;
 8     }
 9 
10     public SeqList() {
11         this(64);
12     }
13 
14     public SeqList(T[] values) {
15         this(values.length);
16         for (int i = 0; i < values.length; i++) {
17             this.element[i] = values[i];
18         }
19         this.n = element.length;
20 
21     }
22 
23     public boolean isEmpty() {
24         if (this.n == 0)
25             return true;
26         return false;
27     }
28 
29     public int size() {
30         return this.n;
31     }
32 
33     public T get(int i) {
34         if (i >= 0 && i < this.n) {
35             return (T) this.element[i];
36         }
37         return null;
38     }
39 
40     public void set(int i, T x) {
41         if (x == null)
42             throw new NullPointerException("x==null");
43         if (i >= 0 && i < this.n)
44             this.element[i] = x;
45         else
46             throw new java.lang.IndexOutOfBoundsException(i + "");
47     }
48 
49     public int insert(int i, T x) { // 插入x元素
50         if (x == null)
51             throw new NullPointerException("x==null");
52         if (i < 0)
53             i = 0;
54         if (i > this.n)
55             i = this.n;
56         Object[] source = this.element;
57         if (this.n == element.length) {
58             this.element = new Object[source.length * 2]; // 申请一个2倍大的数组
59             for (int j = 0; j < i; j++) {
60                 this.element[j] = source[j];
61 
62             }
63         }
64         for (int j = this.n - 1; j >= i; j--) {
65             element[j + 1] = source[j];
66 
67         }
68 
69         this.element[i] = x;
70         this.n++;
71         return i;
72     }
73 
74     public int insert(T x) { // 表尾插入x元素,成员方法重载
75         return this.insert(this.n, x);
76     }
77 
78     public T remove(int i) { // 删除数组下标为i的元素
79         if (this.n >= 0 && i >= 0 && i < this.n) {
80             T old = (T) this.element[i];
81             for (int j = i; j < this.n - 1; j++) {
82                 element[j] = element[j + 1];
83 
84             }
85             this.element[this.n - 1] = null;
86             this.n--;
87             return old;
88         }
89         return null;
90 
91     }
92 
93     public void clear() { // 删除所有元素
94         this.n = 0;
95     }
  1 public class Node<T> { // 结点类
  2     public T data;
  3     public Node<T> next;
  4 
  5     public Node(T data, Node<T> next) {
  6         this.data = data;
  7         this.next = next;
  8     }
  9 
 10     public Node() {
 11         this(null, null);
 12     }
 13 
 14 }
 15 public class SinglyList<T> extends Object {  //带头结点的单链表类
 16     public Node<T> head;
 17 
 18     public SinglyList() {
 19         this.head = new Node<T>();
 20     }
 21 
 22     public SinglyList(T[] values) {
 23         this();
 24         Node<T> rear = this.head;
 25         for (int i = 0; i < values.length; i++) {
 26             rear.next = new Node<T>(values[i], null);
 27             rear = rear.next;
 28         }
 29     }
 30 
 31     public boolean isEmpty() {
 32         return this.head.next == null;
 33     }
 34 
 35     public T get(int i) {
 36         Node<T> p = this.head.next;
 37         for (int j = 0; p != null && j < i; j++) {
 38             p = p.next;
 39         }
 40         return (i >= 0 && p != null) ? p.data : null;
 41     }
 42 
 43     public void set(int i, T x) {
 44         if (i < 0 || i > size())
 45             throw new IndexOutOfBoundsException(i + "");
 46         if (x == null)
 47             throw new NullPointerException("x==null");
 48         Node<T> p = this.head.next;
 49         for (int j = 0; p != null && j < i; j++) {
 50             p = p.next;
 51         }
 52         p.data = x;
 53 
 54     }
 55 
 56     public int size() {
 57         int len = 0;
 58         Node<T> p = this.head.next;
 59         if (p == null)
 60             return -1;
 61         while (p != null) {
 62             len++;
 63             p = p.next;
 64 
 65         }
 66         return len;
 67     }
 68 
 69     public Node<T> insert(int i, T x) {
 70         if (x == null)
 71             throw new NullPointerException("x==null");
 72         Node<T> front = this.head;
 73         for (int j = 0; front.next != null && j < i; j++) {
 74             front = front.next;
 75         }
 76         front.next = new Node<T>(x, front.next);
 77         return front.next;
 78 
 79     }
 80 
 81     public Node<T> insert(T t) {
 82         return insert(Integer.MAX_VALUE, t);
 83     }
 84 
 85     public T remove(int i) {
 86         Node<T> front = this.head;
 87         for (int j = 0; front.next != null && j < i; j++) {
 88             front = front.next;
 89         }
 90         if (i >= 0 && front.next != null) {
 91             T old = front.next.data;
 92             front.next = front.next.next;
 93             return old;
 94         }
 95         return null;
 96 
 97     }
 98 
 99     public void clear() {
100         this.head.next = null;
101     }

 

转载于:https://www.cnblogs.com/wang118/p/7207887.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/253976.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

SSH初体验系列--Hibernate--1--环境配置及demo

最近在学hibernate,常见的教程都是搭配mysql,因为公司本地电脑用的是pg,所以就尝试着做个pg的小demo. 自己也是边学边写&#xff0c;只当是加深印象.话不多说&#xff0c;直接开始; 一) 准备工作; 1) 本地安装postgresql ,这个不多说&#xff0c;自己去网上下载; 注: 本次使用的…

Qt学习:QAction系列详解

一、QAction类详解 【详细描述】 QAction类提供了抽象的用户界面action&#xff0c;这些action可以被放置在窗口部件中。 应用程序可以通过菜单&#xff0c;工具栏按钮以及键盘快捷键来调用通用的命令。由于用户期望每个命令都能以相同的方式执行&#xff0c;而不管命令所使用的…

H.264优秀特征

一、主要特性 1、H.264/AVC相对以前的编码方法&#xff0c;以MPEG-2为例&#xff0c;在图像内容预测方面提高编码效率&#xff0c;改善图像质量的主要特点如下&#xff1a; ● 可变块大小运动补偿&#xff1a; 选择运动补偿大小和形状比以前的标准更灵活&#xff0c;最小的…

Linux 文件系统 EXT4 的前世今生

在先前关于Linux文件系统的文章中&#xff0c;我写了一份说明书去介绍Linux文件系统&#xff0c;里面有一些高级的概念&#xff0c;比如说&#xff0c;一切都是文件。我很想去深入地讨论更多EXT文件系统的特性的信息。所以&#xff0c;首先让我们来回答这个问题&#xff1a;什么…

windows 添加开始菜单

C:\Users\用户名&#xff08;为你设置的电脑名称&#xff09;\AppData\Roaming\Microsoft\Windows\Start Menu C:\ProgramData\Microsoft\Windows\Start Menu 注&#xff1a;默认状态下AppData和ProgramData文件夹为隐藏状态&#xff0c;所以要查看需要先显示隐藏的文件。 具体…

awesome-go:很全的go语言资源合集

awesome-go:一个很全的go语言框架&#xff0c;库&#xff0c;软件合集 前面发过关于awsone-python, awsone django&#xff0c; flask。最近在学习golang&#xff0c;所以找到awsone-go 非常赞的go语言 Audio & 音乐类安全认证 & OAuthCUI数据库数据库驱动日期时间Emai…

zabbix监控系列(5)之通过trap模式监控网络设备

转载于:https://www.cnblogs.com/liaojiafa/p/7216749.html

struts2框架下的一个简单的ajax例子

举个例子 jsp页面&#xff1a; <% page language"java" import"java.util.*" pageEncoding"utf-8"%> <% String path request.getContextPath(); String basePath request.getScheme()"://"request.getServerName()":…

C语言的指针初始化特别注意一点

void func2(int *value) { *value 2; /// value为空指针&#xff0c;不能被取值&#xff0c;所以*value是错误的 } void func1() { int *p 0;//此处相当于PNULL func2(p); } / void func2(int *value) { *value 2; /// 正确} void func1() { int a0; int *p &…

小程序—九宫格心形拼图

说明 前几天在朋友圈看到好几次这种图片。 这种图片&#xff0c;是用九张图片拼成的一个心形。 感觉很有趣&#xff0c;就上网查了查怎么做&#xff0c;大部分的说法就是用美图秀秀的拼图功能来做&#xff0c; 在微信小程序中也有专门做心形拼图的小程序&#xff0c;我都试了试…

第二部分:志愿录取标准

第二部分&#xff1a;志愿录取标准 零、概况一、传统志愿录取过程二、平行志愿录取过程三、17年志愿录取过程 零、概况自1977年&#xff0c;恢复高考以来&#xff0c;高考录取标准&#xff0c;作为公平线&#xff0c;都是相当透明的。这部分分享&#xff0c;以录取标准&#xf…

100. Same Tree

Given two binary trees, write a function to check if they are equal or not. Two binary trees are considered equal if they are structurally identical and the nodes have the same value. 递归遍历左子树和右子树 /*** Definition for a binary tree node.* struct T…

关于RTP时间戳及多媒体通信同步的问题/H264关于RTP协议的实现

http://www.rosoo.net/a/201101/10776.html http://hi.baidu.com/fairygardenjoy/blog/item/e56c5cca95829e37b600c88e.html H264关于RTP协议的实现:http://www.rosoo.net/a/201108/14896.html RTP协议包头的格式&#xff1a; 10~16 Bit为PT域&#xff0c;指的就是负载类型…

程序员懂点经济学-股票投资

2019独角兽企业重金招聘Python工程师标准>>> ▍写在前面 前面有文章 关于程序员如何赚点小钱 讲过 合理的投资理财&#xff0c;可以了解一下. 再次建议&#xff0c;不要将全身家当投入股市&#xff0c;建议投入10~30%就好了. (不要拿输不起的钱来炒股&#xff0c;比…

彻底弄懂响应式设计中的em和rem

前一阵子在响应式开发中遇到了em和rem的问题&#xff0c;也上网搜过一些文章&#xff0c;篇幅很长&#xff0c;也没有仔细看&#xff0c;今天来总结一下。 rem是指&#xff1a;根元素&#xff08;root element&#xff0c;html&#xff09;的字体大小&#xff0c; em是指&#…

JAVA字符串

字符串 1. 字符串 1.1 字符串概述和特点 java.lang.String类代表字符串。 API当中说&#xff1a;Java 程序中的所有字符串字面值&#xff08;如 "abc" &#xff09;都作为此类的实例实现。 其实就是说&#xff1a;程序当中所有的双引号字符串&#xff0c;都是String类…

21分钟 MySQL 入门教程

转自 21分钟 MySQL 入门教程 一、MySQL的相关概念介绍二、Windows下MySQL的配置配置步骤MySQL服务的启动、停止与卸载三、MySQL脚本的基本组成四、MySQL中的数据类型五、使用MySQL数据库登录到MySQL创建一个数据库选择所要操作的数据库创建数据库表六、操作MySQL数据库向表中插…

node-sass报错解决方法

node-sass报错解决方法 node-sass报错解决方法 在Vue.js中&#xff0c;每一个vue文件都是一个组件&#xff0c;在.vue文件中可以将模板&#xff0c;脚本&#xff0c;样式写在一起&#xff0c;便于组织整个组件。在使用template&#xff0c;script时&#xff0c;编写css样式时&a…

微软人工智能愿景:根植于研发 寄望于“对话”

过去25年来&#xff0c;微软公司持续投入人工智能的发展愿景。现在&#xff0c;借助全新发布的聊天机器人Zo、Cortana Decices SDK和智能套件、以及扩展智能工具&#xff0c;这一愿景即将成为现实。12月13日&#xff0c;在旧金山的一次小聚会上&#xff0c;微软全球执行副总裁、…