JAVA中|是什么意思
其实主要是想问一下一个解数组程序的问题,正规问百度都给作失效..真是服了!!具体的一段注释如下:(恕不能发全部源代码..失效2个问题了,看不懂可以私信我..)//Aset...
其实主要是想问一下一个解数组程序的问题,正规问百度都给作失效..真是服了!!
具体的一段注释如下:(恕不能发全部源代码..失效2个问题了,看不懂可以私信我..)
// A set of bit-vectors that represent the known values for each column.
// Specifically, if column c contains the digits d1 and d2,
// colsSet[c] = 2^(d1-1)|2^(d2-1)
// For example, if column 0 contains the values 1 and 4, colsSet[0] = 9.
// The information in this variable is redundant with the information
// in the cells variable. The purpose of this variable is to reduce
// the cost of determining whether a particular digit can be set in
// a particular cell.
其中colsset()那一段之后的意思都不是很懂,求教一下大家 展开
具体的一段注释如下:(恕不能发全部源代码..失效2个问题了,看不懂可以私信我..)
// A set of bit-vectors that represent the known values for each column.
// Specifically, if column c contains the digits d1 and d2,
// colsSet[c] = 2^(d1-1)|2^(d2-1)
// For example, if column 0 contains the values 1 and 4, colsSet[0] = 9.
// The information in this variable is redundant with the information
// in the cells variable. The purpose of this variable is to reduce
// the cost of determining whether a particular digit can be set in
// a particular cell.
其中colsset()那一段之后的意思都不是很懂,求教一下大家 展开
展开全部
首先^和|表示的都是位运算,例如:2^4表示数字2和4的异或位运算,在运算过程中,首先要把数字2和4都转换为二进制的,2的二进制为10,4的二进制为100,再像我们平时算加减法一样列成竖式运算,同位不同的运算结果为1,相同的为0,这样,10和100两个二进制数的个位都为0,所以运算出的结果中个位也为0,而10的百位为0,100的百位为1,两个数不同,所以运算出来的结果中百位为1,综上所述,10^100运算出来的二进制结果为110。“|”表示的是或运算,即两个二进制数同位中,只要有一个为1则结果为1,若两个都为1其结果也为1
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询