Golang 程序切换给定数字 n 的第 K 个。
例子
考虑n = 20(00010100),k = 3。
切换给定数字的第k位后:00010000 => 16。
解决这个问题的方法
Step 1 - 定义一个方法,其中 n 和 k 将是参数,返回类型为int。
步骤 2 - 使用n ^ (1<<( k -1))执行 AND 运算。
步骤 3 - 操作后返回数字。
示例
package main输出结果import (
"fmt"
"strconv"
)
func ToggleKthBit(n, k int) int {
return n ^ (1 << (k-1))
}
func main(){
var n = 20
var k = 3
fmt.Printf("Binary of %d is: %s.\n", n, strconv.FormatInt(int64(n), 2))
number := ToggleKthBit(n, k)
fmt.Printf("After toggling %d rd bit of the given number is %d.\n", k, number)
}
Binary of 20 is: 10100.After toggling 3 rd bit of the given number is 16.
以上是 Golang 程序切换给定数字 n 的第 K 个。 的全部内容, 来源链接: utcz.com/z/355112.html