Compare commits

...

2 Commits

Author SHA1 Message Date
5fbec89c4e Implement random starting alphabet. 2021-04-06 03:11:33 +00:00
48d1a97acd Several improvements and new features:
* Use uppercase letters.
* Print number of iterations it took to reach a steady state.
* Add a --infinite mode that loops forever, and only prints the final outcome.
* [WIP] Start with a random alphabet.
2021-04-06 03:02:18 +00:00
2 changed files with 81 additions and 37 deletions

View File

@ -3,55 +3,89 @@ package main
import (
"fmt"
"log"
"math/rand"
"os"
"sort"
"time"
)
var SPELLINGS = map[rune]string{
'a': "ay",
'b': "bee",
'c': "see",
'd': "dee",
'e': "ee",
'f': "eff",
'g': "gee",
'h': "aitch",
'i': "eye",
'j': "jay",
'k': "kay",
'l': "ell",
'm': "emm",
'n': "enn",
'o': "oh",
'p': "pee",
'q': "cue",
'r': "arr",
's': "ess",
't': "tee",
'u': "ewe",
'v': "vee",
'w': "double ewe",
'x': "ecks",
'y': "why",
'z': "zee",
'A': "AY",
'B': "BEE",
'C': "SEE",
'D': "DEE",
'E': "EE",
'F': "EFF",
'G': "GEE",
'H': "AITCH",
'I': "EYE",
'J': "JAY",
'K': "KAY",
'L': "ELL",
'M': "EMM",
'N': "ENN",
'O': "OH",
'P': "PEE",
'Q': "CUE",
'R': "ARR",
'S': "ESS",
'T': "TEE",
'U': "EWE",
'V': "VEE",
'W': "DOUBLE EWE",
'X': "ECKS",
'Y': "WHY",
'Z': "ZEE",
}
func main() {
alphabet := []rune{'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'}
prev := string(alphabet)
fmt.Println(string(prev))
rand.Seed(time.Now().UnixNano())
random := false
infinite := false
for i := 1; i < len(os.Args); i++ {
if os.Args[i] == "--random" {
random = true
}
if os.Args[i] == "--infinite" {
infinite = true
}
}
for {
alphabet = sort_alphabet(alphabet)
if string(alphabet) == prev {
var alphabet []rune
if random {
alphabet = randomAlphabet()
} else {
alphabet = []rune{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'}
}
prev := string(alphabet)
fmt.Println(string(prev))
i := 0
for {
alphabet = sortAlphabet(alphabet)
if string(alphabet) == prev {
if infinite {
fmt.Println(prev)
}
break
}
prev = string(alphabet)
if !infinite {
fmt.Println(prev)
}
i++
}
fmt.Println("Iterations:", i)
if !infinite {
return
}
prev = string(alphabet)
fmt.Println(prev)
}
}
// sort the provided alphabet (a slice of runes) by spelling, using the alphabet itself
// as the lexicographic ordering. Return the new alphabet.
func sort_alphabet(alphabet []rune) []rune {
func sortAlphabet(alphabet []rune) []rune {
new_alphabet := make([]rune, len(alphabet))
copy(new_alphabet, alphabet)
sort.Slice(new_alphabet, func(i, j int) bool {
@ -63,8 +97,8 @@ func sort_alphabet(alphabet []rune) []rune {
k := 0
for k = 0; k < len(i_spelling) && k < len(j_spelling); k++ {
i_index = find_index(alphabet, rune(i_spelling[k]))
j_index = find_index(alphabet, rune(j_spelling[k]))
i_index = findIndex(alphabet, rune(i_spelling[k]))
j_index = findIndex(alphabet, rune(j_spelling[k]))
if i_index != j_index {
break
@ -75,7 +109,7 @@ func sort_alphabet(alphabet []rune) []rune {
return new_alphabet
}
func find_index(alphabet []rune, target rune) int {
func findIndex(alphabet []rune, target rune) int {
for i, letter := range alphabet {
if letter == target {
return i
@ -84,3 +118,9 @@ func find_index(alphabet []rune, target rune) int {
log.Panicf("Tried to find a letter that doesn't exist")
return -1
}
func randomAlphabet() []rune {
a := []rune{'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'}
rand.Shuffle(len(a), func(i, j int) { a[i], a[j] = a[j], a[i] })
return a
}

View File

@ -26,3 +26,7 @@ with nearly any version of golang installed. Then execute it with
```
./alphabetter
```
To loop forever, run with `--infinite`. While in infinite mode, only the starting alphabet and final alphabet are printed.
To start with a random alphabet (on each iteration), run with `--random`.