原题目及链接 https://leetcode-cn.com/problems/n-th-tribonacci-number/ 解法 记忆式递归: class Solution { // 1137.第 N 个泰波那契数 int[] cache = new int[