|
Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
A class that provides methods to separate the digits of a large positive number. More...
Public Member Functions | |
| DigitSeparation () | |
| Default constructor for the DigitSeparation class. | |
| std::vector< std::int64_t > | digitSeparationReverseOrder (std::int64_t largeNumber) const |
| Implementation of digitSeparationReverseOrder method. | |
| std::vector< std::int64_t > | digitSeparationForwardOrder (std::int64_t largeNumber) const |
| Implementation of digitSeparationForwardOrder method. | |
A class that provides methods to separate the digits of a large positive number.
|
inline |
Default constructor for the DigitSeparation class.
|
inline |
Implementation of digitSeparationForwardOrder method.
| largeNumber | The large number to separate digits from. |
|
inline |
Implementation of digitSeparationReverseOrder method.
| largeNumber | The large number to separate digits from. |