递归控制-创建链表

Posted pylearn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了递归控制-创建链表相关的知识,希望对你有一定的参考价值。

0.目录

1.递归控制

2.Java代码实现

1.递归控制

递归书写方法:

  • 严格定义递归函数作用,包括参数,返回值,Side-effect
  • 一般,后特殊
  • 每次调用 必须 缩小问题规模
  • 每次问题规模缩小程度必须为 1

2.Java代码实现

2.1 链表结点的实现

Node有两个成员:
一个是value,希望用户创建后就不要修改了;
还有一个是next,创建时默认指向null。

public class Node {
    private final int value;
    private Node next;

    public Node(int value) {
        this.value = value;
        this.next = null;
    }

    public int getValue() {
        return value;
    }

    public Node getNext() {
        return next;
    }

    public void setNext(Node next) {
        this.next = next;
    }

    public static void printLinkedList(Node head) {
        while (head != null) {
            System.out.print(head.getValue());
            System.out.print(" ");
            head = head.getNext();
        }
        System.out.println();
    }
}

2.2 创建链表的实现

先将data中第一个数拿出来建立一个firstNode,
然后firstNode指向剩下的data建立的链表的head,
最后返回firstNode

    /**
     * Creates a Linked list.
     *
     * @param data the data to create the list
     * @return head of the linked list. The returned linked
     * list ends with last node with getNext() == null.
     */
    public Node createLinkedList(List<Integer> data) {
        if (data.isEmpty()) {
            return null;
        }

        Node firstNode = new Node(data.get(0));
        firstNode.setNext(
            createLinkedList(data.subList(1, data.size())));
        return firstNode;
    }

注:当data只有1个元素时 data.subList(1, data.size()) 返回null

2.3 测试用例

测试程序是否正确运行:

    public static void main(String[] args) {
        LinkedListCreator creator = new LinkedListCreator();

        Node.printLinkedList(
            creator.createLinkedList(new ArrayList<>()));
        Node.printLinkedList(
            creator.createLinkedList(Arrays.asList(1)));
        Node.printLinkedList(
            creator.createLinkedList(Arrays.asList(1, 2, 3, 4, 5)));
    }

运行结果为
技术分享图片

main所在java文件全部代码:

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

public class LinkedListCreator {

    /**
     * Creates a Linked list.
     *
     * @param data the data to create the list
     * @return head of the linked list. The returned linked
     * list ends with last node with getNext() == null.
     */
    public Node createLinkedList(List<Integer> data) {
        if (data.isEmpty()) {
            return null;
        }

        Node firstNode = new Node(data.get(0));
        firstNode.setNext(
            createLinkedList(data.subList(1, data.size())));
        return firstNode;
    }

    public static void main(String[] args) {
        LinkedListCreator creator = new LinkedListCreator();

        Node.printLinkedList(
            creator.createLinkedList(new ArrayList<>()));
        Node.printLinkedList(
            creator.createLinkedList(Arrays.asList(1)));
        Node.printLinkedList(
            creator.createLinkedList(Arrays.asList(1, 2, 3, 4, 5)));
    }
}





以上是关于递归控制-创建链表的主要内容,如果未能解决你的问题,请参考以下文章

NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段

Python 3 - 在链表中使用递归

nodejs常用代码片段

回文链表;相交链表;合并两个有序链表(递归+迭代);

回文链表;相交链表;合并两个有序链表(递归+迭代);

JavaScript 代码片段