Skip to content

Commit e6cf582

Browse files
authored
Feat: reflected binary code (#449)
1 parent c85f931 commit e6cf582

File tree

3 files changed

+60
-3
lines changed

3 files changed

+60
-3
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ Read our [Contribution Guidelines](CONTRIBUTING.md) before you contribute.
9595
4. [`MeanUsingAndXor`](./math/binary/arithmeticmean.go#L12): MeanUsingAndXor This function finds arithmetic mean using "AND" and "XOR" operations
9696
5. [`MeanUsingRightShift`](./math/binary/arithmeticmean.go#L17): MeanUsingRightShift This function finds arithmetic mean using right shift
9797
6. [`ReverseBits`](./math/binary/reversebits.go#L14): ReverseBits This function initialized the result by 0 (all bits 0) and process the given number starting from its least significant bit. If the current bit is 1, set the corresponding most significant bit in the result and finally move on to the next bit in the input number. Repeat this till all its bits are processed.
98-
7. [`XorSearchMissingNumber`](./math/binary/xorsearch.go#L11): XorSearchMissingNumber This function finds a missing number in a sequence
98+
7. [`SequenceGrayCode`](./math/binary/rbc.go#L11): SequenceGrayCode The function generates an "Gray code" sequence of length n
99+
8. [`XorSearchMissingNumber`](./math/binary/xorsearch.go#L11): XorSearchMissingNumber This function finds a missing number in a sequence
99100

100101
---
101102
</details><details>
@@ -644,8 +645,9 @@ Read our [Contribution Guidelines](CONTRIBUTING.md) before you contribute.
644645
---
645646
##### Functions:
646647

647-
1. [`MonteCarloPi`](./math/pi/montecarlopi.go#L15): No description provided.
648-
2. [`Spigot`](./math/pi/spigotpi.go#L12): No description provided.
648+
1. [`MonteCarloPi`](./math/pi/montecarlopi.go#L17): No description provided.
649+
2. [`MonteCarloPiConcurrent`](./math/pi/montecarlopi.go#L36): MonteCarloPiConcurrent approximates the value of pi using the Monte Carlo method. Unlike the MonteCarloPi function (first version), this implementation uses goroutines and channels to parallelize the computation. More details on the Monte Carlo method available at https://en.wikipedia.org/wiki/Monte_Carlo_method. More details on goroutines parallelization available at https://go.dev/doc/effective_go#parallel.
650+
3. [`Spigot`](./math/pi/spigotpi.go#L12): No description provided.
649651

650652
---
651653
</details><details>

math/binary/rbc.go

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// rbc.go
2+
// description: Reflected binary code (RBC)
3+
// details:
4+
// The reflected binary code (RBC), also known just as reflected binary (RB) or Gray code after Frank Gray, is an ordering of the binary numeral system such that two successive values differ in only one bit (binary digit). - [RBC](https://en.wikipedia.org/wiki/Gray_code)
5+
// author(s) [red_byte](https://github.com/i-redbyte)
6+
// see rbc_test.go
7+
8+
package binary
9+
10+
// SequenceGrayCode The function generates an "Gray code" sequence of length n
11+
func SequenceGrayCode(n uint) []uint {
12+
result := make([]uint, 0)
13+
var i uint
14+
for i = 0; i < 1<<n; i++ {
15+
result = append(result, i^(i>>1))
16+
}
17+
return result
18+
}

math/binary/rbc_test.go

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// rbc_test.go
2+
// description: Test for Reflected binary code
3+
// author(s) [red_byte](https://github.com/i-redbyte)
4+
// see rbc.go
5+
6+
package binary
7+
8+
import (
9+
"reflect"
10+
"testing"
11+
)
12+
13+
func TestSequenceGrayCode(t *testing.T) {
14+
tests := []struct {
15+
name string
16+
n uint
17+
want []uint
18+
}{
19+
{"Sequence of values for 1", 1, []uint{0, 1}},
20+
{"Sequence of values for 2", 2, []uint{0, 1, 3, 2}},
21+
{"Sequence of values for 6", 6, []uint{0, 1, 3, 2, 6, 7, 5, 4, 12, 13, 15, 14, 10, 11, 9, 8, 24, 25, 27, 26, 30, 31, 29, 28, 20, 21, 23, 22, 18, 19, 17, 16, 48, 49, 51, 50, 54, 55, 53, 52, 60, 61, 63, 62, 58, 59, 57, 56, 40, 41, 43, 42, 46, 47, 45, 44, 36, 37, 39, 38, 34, 35, 33, 32}},
22+
{"Sequence of values for 8", 8, []uint{0, 1, 3, 2, 6, 7, 5, 4, 12, 13, 15, 14, 10, 11, 9, 8, 24, 25, 27, 26, 30, 31, 29, 28, 20, 21, 23, 22, 18, 19, 17, 16, 48, 49, 51, 50, 54, 55, 53, 52, 60, 61, 63, 62, 58, 59, 57, 56, 40, 41, 43, 42, 46, 47, 45, 44, 36, 37, 39, 38, 34, 35, 33, 32, 96, 97, 99, 98, 102, 103, 101, 100, 108, 109, 111, 110, 106, 107, 105, 104, 120, 121, 123, 122, 126, 127, 125, 124, 116, 117, 119, 118, 114, 115, 113, 112, 80, 81, 83, 82, 86, 87, 85, 84, 92, 93, 95, 94, 90, 91, 89, 88, 72, 73, 75, 74, 78, 79, 77, 76, 68, 69, 71, 70, 66, 67, 65, 64, 192, 193, 195, 194, 198, 199, 197, 196, 204, 205, 207, 206, 202, 203, 201, 200, 216, 217, 219, 218, 222, 223, 221, 220, 212, 213, 215, 214, 210, 211, 209, 208, 240, 241, 243, 242, 246, 247, 245, 244, 252, 253, 255, 254, 250, 251, 249, 248, 232, 233, 235, 234, 238, 239, 237, 236, 228, 229, 231, 230, 226, 227, 225, 224, 160, 161, 163, 162, 166, 167, 165, 164, 172, 173, 175, 174, 170, 171, 169, 168, 184, 185, 187, 186, 190, 191, 189, 188, 180, 181, 183, 182, 178, 179, 177, 176, 144, 145, 147, 146, 150, 151, 149, 148, 156, 157, 159, 158, 154, 155, 153, 152, 136, 137, 139, 138, 142, 143, 141, 140, 132, 133, 135, 134, 130, 131, 129, 128}},
23+
}
24+
for _, test := range tests {
25+
t.Run(test.name, func(t *testing.T) {
26+
if got := SequenceGrayCode(test.n); !reflect.DeepEqual(got, test.want) {
27+
t.Errorf("SequenceGrayCode() = %v, want %v", got, test.want)
28+
}
29+
})
30+
}
31+
}
32+
33+
func BenchmarkSequenceGrayCode(b *testing.B) {
34+
for i := 0; i < b.N; i++ {
35+
SequenceGrayCode(6)
36+
}
37+
}

0 commit comments

Comments
 (0)