We can take divMod
to be the basic step in a recursive algorithm
which extracts the digits of a number in base b step by step (here we will
concentrate on producing a list of Ints: conversion to actual digit symbols
is merely a map away). In the recursive case, we take a number n and extract
two numbers from it using divMod
, namely the remainder after division
by b (call this r) and a new number m which is the basis for the next
step in the process. We call this function str
to remind us that it
converts a number to a String (once we convert to digits). When we reach 0 there is
nothing left to process, so we will return an empty list.
Unfortunately, the natural recursive algorithm returns the digits in the reverse of the order we really want: this is the same problem we encountered when converting numerals to numbers, now hitting us on the ass as we go back out the door.
|
divMod
in back-quotes converts it (syntactically) into an infix operator:
n `divMod` b == divMod n b