numerical-collection-cpp 0.10.0
A collection of algorithms in numerical analysis implemented in C++
Loading...
Searching...
No Matches
gray_code.h
Go to the documentation of this file.
1/*
2 * Copyright 2025 MusicScience37 (Kenta Kabashima)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
20#pragma once
21
22#include <cstdint>
23
24namespace num_collect::util {
25
32[[nodiscard]] constexpr auto binary_to_gray_code(std::uint32_t binary)
33 -> std::uint32_t {
34 return binary ^ (binary >> 1U);
35}
36
43[[nodiscard]] constexpr auto binary_to_gray_code(std::uint64_t binary)
44 -> std::uint64_t {
45 return binary ^ (binary >> 1U);
46}
47
54[[nodiscard]] constexpr auto gray_code_to_binary(std::uint32_t gray_code)
55 -> std::uint32_t {
56 std::uint32_t binary = gray_code;
57 binary ^= binary >> 1U;
58 binary ^= binary >> 2U;
59 binary ^= binary >> 4U;
60 binary ^= binary >> 8U; // NOLINT(*-magic-numbers)
61 binary ^= binary >> 16U; // NOLINT(*-magic-numbers)
62 return binary;
63}
64
71[[nodiscard]] constexpr auto gray_code_to_binary(std::uint64_t gray_code)
72 -> std::uint64_t {
73 std::uint64_t binary = gray_code;
74 binary ^= binary >> 1U;
75 binary ^= binary >> 2U;
76 binary ^= binary >> 4U;
77 binary ^= binary >> 8U; // NOLINT(*-magic-numbers)
78 binary ^= binary >> 16U; // NOLINT(*-magic-numbers)
79 binary ^= binary >> 32U; // NOLINT(*-magic-numbers)
80 return binary;
81}
82
83} // namespace num_collect::util
Namespace of utilities.
Definition assert.h:30
constexpr auto gray_code_to_binary(std::uint32_t gray_code) -> std::uint32_t
Convert an integer from Gray code to binary warren2013.
Definition gray_code.h:54
constexpr auto binary_to_gray_code(std::uint32_t binary) -> std::uint32_t
Convert an integer from binary to Gray code warren2013.
Definition gray_code.h:32