El método java.math.BigInteger.bitLength() devuelve el número de bits en la representación mínima en complemento a dos de este BigInteger, excluyendo un bit de signo. Para BigIntegers positivos, esto es equivalente al número de bits en la representación binaria ordinaria. El método bitLength Calcula (ceil(log2(this < 0 ? -this : this+1))) .
Sintaxis:
public int bitLength()
Parámetros: el método no devuelve ningún parámetro.
Valor devuelto: el método se usa para devolver el número de bits en la representación mínima en complemento a dos de este BigInteger, excluyendo un bit de signo.
Ejemplos:
Input: value = 2300 Output: 12 Explanation: Binary signed 2's complement of 2300 = 0000100011111100 first four bits are singed bit so exclude them then remaining no of bits = 12. So bitLength in 0000100011111100 = 12. Input: value = 5482549 Output: 23
El siguiente programa ilustra el uso del método bitLength() de BigInteger.
Java
// Program to demonstrate bitLength() method of BigInteger import java.math.*; public class GFG { public static void main(String[] args) { // Create BigInteger objects BigInteger biginteger = new BigInteger("2300"); // Call bitLength() method on bigInteger int count = biginteger.bitLength(); String result = "bitLength of " + biginteger + " is " + count; // Print result System.out.println(result); } }
bitLength of 2300 is 12
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#bitLength()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA