Added Base10_2_X wrapper, and tests

This commit is contained in:
Leonetienne
2022-02-27 17:08:57 +01:00
parent 932bd62477
commit eaa406c9e6
4 changed files with 99 additions and 1 deletions

View File

@@ -126,3 +126,16 @@ std::string GeneralUtility::BaseX_2_Y(const std::string &num, const std::string
return ss.str();
}
std::string GeneralUtility::Base10_2_X(const std::uint64_t &num, const std::string &set, const std::uint32_t minOutLen) {
// Convert num to a string
std::stringstream ss;
ss << num;
const std::string numStr = ss.str();
// Use BaseX_2_Y to convert to outbase
const std::string convertedNum = BaseX_2_Y(numStr, "0123456789", set, minOutLen);
// return it
return convertedNum;
}

View File

@@ -29,13 +29,20 @@ public:
//! \return A 64-bit integer representing the number
static std::uint64_t BaseX_2_10(const std::string& num, const std::string& set);
//! Will convert a number to an arbitrary base.
//! This just a wrapper for BaseX_2_Y.
//! \param num The number to be converted
//! \param set The desired set/base for the output to be in
//! \return `num` in base `set`
static std::string Base10_2_X(const std::uint64_t& num, const std::string& set, const std::uint32_t minOutLen = 1);
//! Will convert a number from an arbitrary base to another arbitrary base.
//! \param num A string representation of a number
//! \param set_in The set/base of the input
//! \param set_out The desired set/base to output
//! \param minLen The minimum output length. Setting this will result in zero-padded output (Like, 00000001 instead of 1)
//! \return `num` in base `set_out`
static std::string BaseX_2_Y(const std::string& num, const std::string& set_in, const std::string& set_out, const std::uint32_t minLen = 1);
static std::string BaseX_2_Y(const std::string& num, const std::string& set_in, const std::string& set_out, const std::uint32_t minOutLen = 1);
private:
// No instantiation! >:(