Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม 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