Skip to content

Commit 42cbf49

Browse files
committed
feat: update solutions to lcci question:08.01.Three Steps Problem
更新《程序员面试金典》题解:面试题 08.01. 三步问题
1 parent f5dd246 commit 42cbf49

File tree

5 files changed

+71
-9
lines changed

5 files changed

+71
-9
lines changed

lcci/08.01.Three Steps Problem/README.md

+19-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Solution:
3939
if n < 3:
4040
return n
4141
a, b, c = 1, 2, 4
42-
for i in range(4, n + 1):
42+
for _ in range(4, n + 1):
4343
a, b, c = b, c, (a + b + c) % 1000000007
4444
return c
4545
```
@@ -65,7 +65,22 @@ class Solution {
6565
}
6666
```
6767

68-
### ...
69-
```
70-
68+
### C++
69+
```cpp
70+
class Solution {
71+
public:
72+
int waysToStep(int n) {
73+
if (n < 3) {
74+
return n;
75+
}
76+
int a = 1, b = 2, c = 4, i = 4;
77+
while (i++ <= n) {
78+
int t = ((a + b) % 1000000007 + c) % 1000000007;
79+
a = b;
80+
b = c;
81+
c = t;
82+
}
83+
return c;
84+
}
85+
};
7186
```

lcci/08.01.Three Steps Problem/README_EN.md

+19-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Solution:
4848
if n < 3:
4949
return n
5050
a, b, c = 1, 2, 4
51-
for i in range(4, n + 1):
51+
for _ in range(4, n + 1):
5252
a, b, c = b, c, (a + b + c) % 1000000007
5353
return c
5454
```
@@ -73,7 +73,22 @@ class Solution {
7373
}
7474
```
7575

76-
### ...
77-
```
78-
76+
### C++
77+
```cpp
78+
class Solution {
79+
public:
80+
int waysToStep(int n) {
81+
if (n < 3) {
82+
return n;
83+
}
84+
int a = 1, b = 2, c = 4, i = 4;
85+
while (i++ <= n) {
86+
int t = ((a + b) % 1000000007 + c) % 1000000007;
87+
a = b;
88+
b = c;
89+
c = t;
90+
}
91+
return c;
92+
}
93+
};
7994
```
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
int waysToStep(int n)
2+
{
3+
if (n < 3)
4+
{
5+
return n;
6+
}
7+
int a = 1, b = 2, c = 4, i = 4;
8+
while (i++ <= n)
9+
{
10+
int t = ((a + b) % 1000000007 + c) % 1000000007;
11+
a = b;
12+
b = c;
13+
c = t;
14+
}
15+
return c;
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
class Solution {
2+
public:
3+
int waysToStep(int n) {
4+
if (n < 3) {
5+
return n;
6+
}
7+
int a = 1, b = 2, c = 4, i = 4;
8+
while (i++ <= n) {
9+
int t = ((a + b) % 1000000007 + c) % 1000000007;
10+
a = b;
11+
b = c;
12+
c = t;
13+
}
14+
return c;
15+
}
16+
};

lcci/08.01.Three Steps Problem/Solution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ def waysToStep(self, n: int) -> int:
33
if n < 3:
44
return n
55
a, b, c = 1, 2, 4
6-
for i in range(4, n + 1):
6+
for _ in range(4, n + 1):
77
a, b, c = b, c, (a + b + c) % 1000000007
88
return c

0 commit comments

Comments
 (0)