添加 problem 1137

This commit is contained in:
YDZ
2019-12-13 18:35:15 +08:00
parent 8b6b7899f9
commit a5f906f309
3 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package leetcode
func tribonacci(n int) int {
if n < 2 {
return n
}
trib, prev, prev2 := 1, 1, 0
for n > 2 {
trib, prev, prev2 = trib+prev+prev2, trib, prev
n--
}
return trib
}

View File

@@ -0,0 +1,62 @@
package leetcode
import (
"fmt"
"testing"
)
type question1137 struct {
para1137
ans1137
}
// para 是参数
// one 代表第一个参数
type para1137 struct {
one int
}
// ans 是答案
// one 代表第一个答案
type ans1137 struct {
one int
}
func Test_Problem1137(t *testing.T) {
qs := []question1137{
question1137{
para1137{1},
ans1137{1},
},
question1137{
para1137{2},
ans1137{1},
},
question1137{
para1137{3},
ans1137{2},
},
question1137{
para1137{4},
ans1137{4},
},
question1137{
para1137{25},
ans1137{1389537},
},
}
fmt.Printf("------------------------Leetcode Problem 1137------------------------\n")
for _, q := range qs {
_, p := q.ans1137, q.para1137
fmt.Printf("【input】:%v 【output】:%v\n", p, tribonacci(p.one))
}
fmt.Printf("\n\n\n")
}

View File

@@ -0,0 +1,50 @@
# [1137. N-th Tribonacci Number](https://leetcode.com/problems/n-th-tribonacci-number/)
## 题目:
The Tribonacci sequence Tn is defined as follows:
T0 = 0, T1 = 1, T2 = 1, and Tn+3 = Tn + Tn+1 + Tn+2 for n >= 0.
Given `n`, return the value of Tn.
**Example 1:**
Input: n = 4
Output: 4
Explanation:
T_3 = 0 + 1 + 1 = 2
T_4 = 1 + 1 + 2 = 4
**Example 2:**
Input: n = 25
Output: 1389537
**Constraints:**
- `0 <= n <= 37`
- The answer is guaranteed to fit within a 32-bit integer, ie. `answer <= 2^31 - 1`.
## 题目大意
泰波那契序列 Tn 定义如下 
T0 = 0, T1 = 1, T2 = 1, 且在 n >= 0 的条件下 Tn+3 = Tn + Tn+1 + Tn+2
给你整数 n请返回第 n 个泰波那契数 Tn 的值。
提示:
- 0 <= n <= 37
- 答案保证是一个 32 位整数,即 answer <= 2^31 - 1。
## 解题思路
- 求泰波那契数列中的第 n 个数。
- 简单题,按照题意定义计算即可。