requisito previo: Conceptos básicos de BigInteger
El método java.math.BigInteger.getLowestSetBit() devuelve el índice del bit establecido más a la derecha (orden más bajo) de este BigInteger. Significa que este método devuelve el número de bits cero o no configurados a la derecha del bit configurado más a la derecha. Si BigInteger no contiene un bit establecido, este método devolverá -1. El método calcula (thisBigInteger==0? -1 : log2(thisBigInteger & -thisBigInteger)) .
Sintaxis:
public int getLowestSetBit()
Parámetros: El método no acepta ningún parámetro.
Valor devuelto: el método devuelve el índice del bit establecido más a la derecha en este BigInteger.
Ejemplos:
Input: value = 2300 Output: 2 Explanation: Binary Representation of 2300 = 100011111100 The lowest set bit index is 2 Input: value = 35000 Output: 3
El siguiente programa ilustra el método getLowestSetBit() de BigInteger:
// Program to illustrate the getLowestSetBit() // method of BigInteger import java.math.*; public class GFG { public static void main(String[] args) { // Create BigInteger object BigInteger biginteger = new BigInteger("2300"); // Call getLowestSetBit() method on bigInteger // Store the return value as Integer lowestsetbit int lowestSetbit = biginteger.getLowestSetBit(); String lsb = "After applying getLowestSetBit on " + biginteger + " we get index of lowest set bit = " + lowestSetbit; // Printing result System.out.println(lsb); } }
After applying getLowestSetBit on 2300 we get index of lowest set bit = 2
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#getLowestSetBit()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA