我们得到一个数字N。我们的任务是从N生成所有的冰雹数字,并找到N减少到的步数。
Collatz猜想: L。Collatz在1937年提出的问题,也称为3x + 1映射,3n + 1问题。令N为整数。根据Collatz猜想,如果我们保持迭代N如下
N = N / 2 //对于偶数N
和N = 3 * N +1 //对于奇数N
无论N的选择如何,我们的数字最终都将收敛到1。
冰雹数字: Collatz猜想生成的整数序列称为冰雹数字。
例子:
Input : N = 7
Output :
Hailstone Numbers: 7, 22, 11, 34, 17,
52, 26, 13, 40, 20,
10, 5, 16, 8, 4, 2,
1
No. of steps Required: 17
Input : N = 9
Output :
Hailstone Numbers: 9, 28, 14, 7, 22, 11,
34, 17, 52, 26, 13,
40, 20, 10, 5, 16, 8,
4, 2, 1
No. of steps Required: 20
In the first example, N = 7.
The numbers will be calculated as follows:
7
3 * 7 + 1 = 22 // Since 7 is odd.
22 / 2 = 11 // 22 is even.
3 * 11 + 1 = 34 // 11 is odd.
.... and so on upto 1.
这个想法很简单,我们递归地打印数字,直到达到基本情况为止。
C++
// C++ program to generate hailstone
// numbers and calculate steps required
// to reduce them to 1
#include
using namespace std;
// function to print hailstone numbers
// and to calculate the number of steps
// required
int HailstoneNumbers(int N)
{
static int c;
cout << N << " ";
if (N == 1 && c == 0) {
// N is initially 1.
return c;
}
else if (N == 1 && c != 0) {
// N is reduced to 1.
c++;
return c;
}
else if (N % 2 == 0) {
// If N is Even.
c++;
HailstoneNumbers(N / 2);
}
else if (N % 2 != 0) {
// N is Odd.
c++;
HailstoneNumbers(3 * N + 1);
}
}
// Driver code
int main()
{
int N = 7;
int x;
// Function to generate Hailstone
// Numbers
x = HailstoneNumbers(N);
// Output: Number of Steps
cout << endl;
cout << "Number of Steps: " << x;
return 0;
}
Java
// Java program to generate hailstone
// numbers and calculate steps required
// to reduce them to 1
import java.util.*;
class GFG {
static int c;
// function to print hailstone numbers
// and to calculate the number of steps
// required
static int HailstoneNumbers(int N)
{
System.out.print(N + " ");
if (N == 1 && c == 0) {
// N is initially 1.
return c;
}
else if (N == 1 && c != 0) {
// N is reduced to 1.
c++;
return c;
}
else if (N % 2 == 0) {
// If N is Even.
c++;
HailstoneNumbers(N / 2);
}
else if (N % 2 != 0) {
// N is Odd.
c++;
HailstoneNumbers(3 * N + 1);
}
return c;
}
// Driver code
public static void main(String[] args)
{
int N = 7;
int x;
// Function to generate Hailstone
// Numbers
x = HailstoneNumbers(N);
// Output: Number of Steps
System.out.println();
System.out.println("Number of Steps: " + x);
}
}
/* This code is contributed by Kriti Shukla */
Python
# Python3 program to generate
# hailstone numbers and
# calculate steps required
# to reduce them to 1
# function to print hailstone
# numbers and to calculate
# the number of steps required
def HailstoneNumbers(N, c):
print(N, end=" ")
if (N == 1 and c == 0):
# N is initially 1.
return c
elif (N == 1 and c != 0):
# N is reduced to 1.
c = c + 1
elif (N % 2 == 0):
# If N is Even.
c = c + 1
c = HailstoneNumbers(int(N / 2), c)
elif (N % 2 != 0):
# N is Odd.
c = c + 1
c = HailstoneNumbers(3 * N + 1, c)
return c
# Driver Code
N = 7
# Function to generate
# Hailstone Numbers
x = HailstoneNumbers(N, 0)
# Output: Number of Steps
print("\nNumber of Steps: ", x)
# This code is contributed
# by mits
C#
// C# program to generate hailstone
// numbers and calculate steps required
// to reduce them to 1
using System;
class GFG {
static int c;
// function to print hailstone numbers
// and to calculate the number of steps
// required
static int HailstoneNumbers(int N)
{
Console.Write(N + " ");
if (N == 1 && c == 0) {
// N is initially 1.
return c;
}
else if (N == 1 && c != 0) {
// N is reduced to 1.
c++;
return c;
}
else if (N % 2 == 0) {
// If N is Even.
c++;
HailstoneNumbers(N / 2);
}
else if (N % 2 != 0) {
// N is Odd.
c++;
HailstoneNumbers(3 * N + 1);
}
return c;
}
// Driver code
public static void Main()
{
int N = 7;
int x;
// Function to generate Hailstone
// Numbers
x = HailstoneNumbers(N);
// Output: Number of Steps
Console.WriteLine();
Console.WriteLine("Number of Steps: " + x);
}
}
// This code is contributed by vt_m
PHP
输出
7 22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1
Number of Steps: 17