数据结构与算法–链表实现以及应用
- 链表是面试时候使用最频繁的一种数据结构。链表的结构简单,他由指针将若干个节点链接成链状结构。链表的创建,插入,删除,查询操作都只有几行代码可以完成,代码量比较少,可以在较短的时间内完成,这样可以在短时间内考察出人员对数据结构的理解。而且链表数据结构很灵活,可以用来各种灵活的试题。
- 链表是一种动态数据结构,因为在建立链表的时候,无需知道链表的长度,当插入一个节点时候,只需要为新节点分配内存,然后调整链表中对应节点的指针指向就可以完成节点的插入。内存分配不是在创建链表的时候一次性完成,而是每添加一个节点分配一个节点的内存,由于没有和数组一样的闲置的内存,所以链表比之数组的内存利用率更高。
- 我们用如下方式定义链表节点:
public class ListNode implements Comparable<ListNode> {
private String key;
private Integer value;
private ListNode next;
private ListNode before;
public ListNode() {
}
public ListNode(String key, Integer value){
this.key = key;
this.value = value;
this.next = null;
this.before = null;
}
public ListNode(Integer value) {
this.value = value;
this.next = null;
this.before = null;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public Integer getValue() {
return value;
}
public void setValue(Integer value) {
this.value = value;
}
public ListNode getNext() {
return next;
}
public void setNext(ListNode next) {
this.next = next;
}
public ListNode getBefore() {
return before;
}
public void setBefore(ListNode before) {
this.before = before;
}
@Override
public int compareTo(ListNode o) {
return this.value - o.value;
}
}
public class MyLinkedList {
public static ListNode addToTail(ListNode head, String key, Integer value) {
ListNode newNode = new ListNode(key, value);
if (head == null) {
head = newNode;
}else {
ListNode pointNode = head;
while (pointNode.getNext() != null){
pointNode = pointNode.getNext();
}
pointNode.setNext(newNode);
}
return head;
}
public static ListNode addToTail(ListNode head, ListNode newNode) {
if (head == null) {
head = newNode;
}else {
ListNode pointNode = head;
while (pointNode.getNext() != null){
pointNode = pointNode.getNext();
}
pointNode.setNext(newNode);
}
return head;
}
public static void print(ListNode head){
if(head == null){
System.out.println("is empty list");
}
ListNode pointNode = head;
while (pointNode != null){
System.out.print(pointNode.getValue());
System.out.print(", ");
pointNode = pointNode.getNext();
}
}
public static ListNode search(ListNode head, Integer value){
if(head == null || value == null){
System.out.println("not in");
}
ListNode pointNode = head;
while (pointNode != null){
if(pointNode.getValue() == value){
System.out.println("is in");
return pointNode;
}else {
pointNode = pointNode.getNext();
}
}
System.out.println("not in");
return null;
}
public static ListNode search(ListNode head, String key){
if(head == null || key == null){
System.out.println("not in");
}
ListNode pointNode = head;
while (pointNode != null){
if(pointNode.getKey().equals(key)){
System.out.println("is in");
return pointNode;
}else {
pointNode = pointNode.getNext();
}
}
System.out.println("not in");
return null;
}
public static ListNode delete(ListNode head, Integer value){
if(head == null || value == null || head.getNext() == null){
return head;
}
ListNode delNode= null;
if(head.getValue() == value){
head = head.getNext();
delNode = head;
}else {
ListNode pointNode = head;
while (pointNode.getNext() != null && pointNode.getNext().getValue() != value){
pointNode = pointNode.getNext();
}
if(pointNode.getNext() != null && pointNode.getNext().getValue() == value){
delNode = pointNode.getNext();
pointNode.setNext(pointNode.getNext().getNext());
}
}
if(delNode != null){
System.out.println("delete success val="+ delNode.getValue());
}
return head;
}
public static void main(String[] args) {
Random random = new Random(100);
ListNode myHead = new ListNode(random.nextInt(100));
for (int i = 0; i < 20; i++) {
addToTail(myHead, random.nextInt(100));
}
print(myHead);
if(search(myHead, 74)){
delete(myHead, 74);
}
print(myHead);
System.out.println();
System.out.println();
}
}
- 由于链表内存不是一次性分配,所以内存是不连续的,通过指针来关键每个节点的内存地址,因此我们也不能像数组一样通过下标去获取对应的节点,只能从头开始遍历节点找到第 i 个节点,时间复杂度是O(n)。
变种题型
- 简单的单向链表实现的基础上,我们看一个特别的:从尾到头打印单向链表中每个节点值
分析
- 单向链表从尾开始打印,简单的做法是将链表中的指针反转,但是这样会改变元数据的结构,但是打印一般是只读的,这样显然不可行
- 顺序打印可以直接从头结点开始读取就可以,要从尾到头反转,也就是说有如下特性:第一个先遍历,但是他必须最后输出,此时我们可以借助其他的数据结构,将第一次遍历看出输入,也就是第一个输入的必须最后一个输出,这是典型的先进后出的顺序,栈很显然符合这种标准,我们有如下实现:
public static void printOver(ListNode head){
MyStack myStack = new MyStack();
if(head == null){
return;
}
ListNode pointNode = head;
while (pointNode != null){
myStack.push(pointNode.getValue().toString());
pointNode = pointNode.getNext();
}
while (!myStack.isEmpty()){
System.out.print(myStack.pop());
System.out.print(", ");
}
}
- 注意:此处用的myStack用的上一节中自己实现的栈,详情点击
- 以上实现用栈可以实现,那么一定可以用递归来完成,因为递归本质上就是栈的一种结构,那么我们用递归每次打印节点的时候都判断是否有子节点,有则下打印子节点,如下实现。
public static void printOver_2(ListNode head){
if(head == null){
return;
}
ListNode pointNode = head;
if(pointNode.getNext() != null){
printOver_2(pointNode.getNext());
}
System.out.print(pointNode.getValue());
System.out.print(", ");
}
- 问题:以上递归方式的代名词看起来更简单一点,但是有一个问题,当链表长度非常长的时候,可能会导致函数栈溢出。而之前用栈的方法虽然需要两次循环但是代码的鲁棒性还是要更好一点,因此我认为最优解是使用栈的方式。
上一篇:数据结构与算法–利用栈实现队列
下一篇:数据结构与算法–查找与排序另类用法