Requisito previo: Conceptos básicos de BigInteger
El método java.math.BigInteger.flipBit(index) devuelve un BigInteger que se utiliza para invertir una posición de bit particular en un BigInteger. Este método Calcula (bigInteger ^ (1<<n)). El bit en el índice n de la representación binaria de bigInteger se invertirá. Es decir, si la posición del bit es 0, se convertirá a 1 y viceversa.
Sintaxis:
public BigInteger flipBit(int index)
Parámetro: El método acepta un índice de parámetro de tipo entero y se refiere a la posición del bit que se va a voltear.
Valor devuelto: el método devuelve el bigInteger después de cambiar su bit en el índice de posición .
Lanza: el método lanza una ArithmeticException cuando el valor del índice es negativo.
Ejemplos:
Input: value = 2300 , index = 1 Output: 2302 Explanation: Binary Representation of 2300 = 100011111100 bit at index 1 is 0 so flip the bit at index 1 and it becomes 1. Now Binary Representation becomes 100011111110 and Decimal equivalent of 100011111110 is 2302 Input: value = 5482549 , index = 5 Output: 5482517
El siguiente programa ilustra el método flipBit(index) de BigInteger.
Java
/* *Program Demonstrate flipBit() method of BigInteger */ import java.math.*; public class GFG { public static void main(String[] args) { // Creating BigInteger object BigInteger biginteger = new BigInteger("5482549"); // Creating an int i for index int i = 5; // Call flipBit() method on bigInteger at index i // store the return BigInteger BigInteger changedvalue = biginteger.flipBit(i); String result = "After applying flipBit at index " + i + " of " + biginteger+ " New Value is " + changedvalue; // Print result System.out.println(result); } }
After applying flipBit at index 5 of 5482549 New Value is 5482517
Referencia: https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#clearBit(int)
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA