Python程序在给定字符串的二进制表示中查找最大连续1的长度。
给定数字,找到其二进制表示形式中最长的连续1的长度。
示例
Input: n = 15 Output: 4 The binary representation of 14 is 1111.
算法
Step 1: input the number. Step 2: use one counter variable c=0. Step 3: Count the number of iterations to reach i = 0. Step 4: This operation reduces length of every sequence of 1s by one.
范例程式码
# Python program to find
# length of the longest
# consecutive 1s in
# binary representation of a number.
def maxlength(n):
# Initialize result
c = 0
# Count the number of iterations to
# reach x = 0.
while (n!=0):
# This operation reduces length
# of every sequence of 1s by one.
n = (n & (n << 1))
c=c+1
return c
# Driver code
n=int(input("Enter The Number ::>"))
print("Maximum Length of 1's ::>",maxlength(n))输出结果
Enter The Number ::>15 Maximum Length of 1's ::>4
热门推荐
10 高考毕业祝福语简短励志
11 婚礼仪式祝福语简短
12 要过年了祝福语简短
13 年后祝福语简短走心
14 亲戚送行祝福语简短精辟
15 对学姐的简短祝福语
16 中秋祝福语简短版大全
17 生日祝福语贺卡老师简短
18 盛夏的温馨祝福语简短