File tree 3 files changed +76
-0
lines changed
solution/0200-0299/0202.Happy Number
3 files changed +76
-0
lines changed Original file line number Diff line number Diff line change 51
51
52
52
<!-- 这里可写通用的实现逻辑 -->
53
53
54
+ 简单模拟,有可能进入死循环导致无法停止,有几种方式解决:
55
+
56
+ - 哈希表:转换过程不会重复出现同一个数字。
57
+ - 限制转换次数:在一定次数转换后还未成功变为 1,那么就断言此数不是快乐数。
58
+ - 快慢指针:与判断链表是否存在环原理一致。
59
+
54
60
<!-- tabs:start -->
55
61
56
62
### ** Python3**
@@ -101,6 +107,31 @@ class Solution {
101
107
}
102
108
```
103
109
110
+ ### ** Rust**
111
+
112
+ ``` rust
113
+ impl Solution {
114
+ fn get_next (mut n : i32 ) -> i32 {
115
+ let mut res = 0 ;
116
+ while n != 0 {
117
+ res += (n % 10 ). pow (2 );
118
+ n /= 10 ;
119
+ }
120
+ res
121
+ }
122
+
123
+ pub fn is_happy (n : i32 ) -> bool {
124
+ let mut slow = n ;
125
+ let mut fast = Self :: get_next (n );
126
+ while slow != fast {
127
+ slow = Self :: get_next (slow );
128
+ fast = Self :: get_next (Self :: get_next (fast ));
129
+ }
130
+ slow == 1
131
+ }
132
+ }
133
+ ```
134
+
104
135
### ** ...**
105
136
106
137
```
Original file line number Diff line number Diff line change @@ -91,6 +91,31 @@ class Solution {
91
91
}
92
92
```
93
93
94
+ ### ** Rust**
95
+
96
+ ``` rust
97
+ impl Solution {
98
+ fn get_next (mut n : i32 ) -> i32 {
99
+ let mut res = 0 ;
100
+ while n != 0 {
101
+ res += (n % 10 ). pow (2 );
102
+ n /= 10 ;
103
+ }
104
+ res
105
+ }
106
+
107
+ pub fn is_happy (n : i32 ) -> bool {
108
+ let mut slow = n ;
109
+ let mut fast = Self :: get_next (n );
110
+ while slow != fast {
111
+ slow = Self :: get_next (slow );
112
+ fast = Self :: get_next (Self :: get_next (fast ));
113
+ }
114
+ slow == 1
115
+ }
116
+ }
117
+ ```
118
+
94
119
### ** ...**
95
120
96
121
```
Original file line number Diff line number Diff line change
1
+ impl Solution {
2
+ fn get_next ( mut n : i32 ) -> i32 {
3
+ let mut res = 0 ;
4
+ while n != 0 {
5
+ res += ( n % 10 ) . pow ( 2 ) ;
6
+ n /= 10 ;
7
+ }
8
+ res
9
+ }
10
+
11
+ pub fn is_happy ( n : i32 ) -> bool {
12
+ let mut slow = n;
13
+ let mut fast = Self :: get_next ( n) ;
14
+ while slow != fast {
15
+ slow = Self :: get_next ( slow) ;
16
+ fast = Self :: get_next ( Self :: get_next ( fast) ) ;
17
+ }
18
+ slow == 1
19
+ }
20
+ }
You can’t perform that action at this time.
0 commit comments