summaryrefslogtreecommitdiff
path: root/cpp/397.cpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-02-23 21:07:19 +0800
committercrupest <crupest@outlook.com>2021-02-23 21:07:19 +0800
commitd8f3b40085619cb680c8f227c65a1f5acc393223 (patch)
tree6a38e3a6c79276fc396259ef962d17236dbed569 /cpp/397.cpp
parentb0162802ad9723c678e495f29ca2f0fc0af2eff1 (diff)
downloadsolutions-d8f3b40085619cb680c8f227c65a1f5acc393223.tar.gz
solutions-d8f3b40085619cb680c8f227c65a1f5acc393223.tar.bz2
solutions-d8f3b40085619cb680c8f227c65a1f5acc393223.zip
Move leetcode solutions to subdir.
Diffstat (limited to 'cpp/397.cpp')
-rw-r--r--cpp/397.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/cpp/397.cpp b/cpp/397.cpp
deleted file mode 100644
index bbb61ff..0000000
--- a/cpp/397.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-class Solution
-{
-public:
- int integerReplacement(int n)
- {
- if (n == 2147483647)
- return 32;
-
- int count = 0;
-
- while (n != 1)
- {
- if (n == 2)
- {
- count += 1;
- break;
- }
- if (n == 3)
- {
- count += 2;
- break;
- }
- if (n % 2 == 0)
- {
- count += 1;
- n /= 2;
- continue;
- }
- if ((n - 1) % 4 == 0)
- {
- count += 3;
- n = (n - 1) / 4;
- continue;
- }
- if ((n + 1) % 4 == 0)
- {
- count += 3;
- n = (n + 1) / 4;
- continue;
- }
- count += 2;
- n = (n - 1) / 2;
- }
-
- return count;
- }
-};