【问题标题】:Finding equally separated string/words in alphabetical order in Go在 Go 中按字母顺序查找等分的字符串/单词
【发布时间】:2019-10-20 17:00:36
【问题描述】:

我正在尝试查找在字母表的圆形排列中等距分隔的单词/字符串。例如:

  • “zzzzyyyybbbzzzaaaaaxxx”是一个由“xyzab”组成的列表,间隔为0 {xy, yz, za, ab}
  • “aco”是一个分隔符为 11 {co, oa}的列表

因此,我想编写函数 IsSeparated(B) 并在 B 为“isSeparated”时返回 true

以下是我的代码/解决方案:

  • 首先,我尝试删除字符串中的重复项,以便更容易计算分离度
  • 其次,我按字母顺序对字符串进行排序
  • 第三,排序后,我计算每个字母的间隔
  • 在“isSeparated”方法中,我尝试使用 maxpair -1 == count 使其以循环排列方式计数,因为总会有 1 个没有配对的字母,例如
  • [{ab} {bx} {xy} {yz} {za}] - [{0} {21} {0} {0} {0}]]//there are 5 pairs = maxPair -1({-xy}

因此,由于它是圆形排列的,所以中间的总是奇数,也就是 21,它们与其余的对分开不均等

这是它变得棘手的部分,我似乎无法获得所需的输出。什么可能是按字母顺序查找每个字母的长度/分隔并检查它们是否均匀分隔的正确方法。


package main

import (
    "fmt"
    "strings"
)

//Q3
func separationCount(x, y string) int {
    alphabets := [26]string{"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"}
    separation := 0

    for i:=0; i < len(alphabets); i++{
        if x == alphabets[i]{

            for j:= i+1; j <len(alphabets); j++{
            if y == alphabets[i+1]{
            fmt.Println(separation)
            return separation
            }else{
                i++
                separation++
            } 
            }
                }else{
            //do nothing
        }
    }
    //fmt.Println(separation)
    return 0
}

func isSeparated(B [] string) bool {
    var N int = len(B) - 1
    var maxPair int
    var item1 string
    var item2 string
    var separation int = 0 
    count := 0
    var intialSeparation int

    //calling the methods
    fmt.Println("Original array:",B)
    B = removeDuplicates(B)
    B = sortedList(B)

    item1 = B[0]
    item2 = B[1]
    intialSeparation = separationCount(item1,item2)

    for i := 0; i< N; i++{
        item1 = B[i]
        item2 = B[i + 1]

        separation = separationCount(item1,item2)
        maxPair++
        if intialSeparation == separation{
            count++
        }

        if maxPair == count{
            return true
        }else{
            return false
        }

    }
    return false
}

//to sort the alphabets 
func sortedList(B []string) [] string {
    N  := len(B)
    //max := 0
    element1 := 0 
    element2 := 1

    for element2 < N {
        var item1 string = B[element1]
        var item2 string = B[element2]

        //using function call
        if greater(item1, item2){
            B[element1] = item2
            B[element2] = item1
        }
        element1++
        element2++
    } 
    fmt.Println("Alphabetically sorted:", B )
    return B
}

//for sorting
func greater(a, b string) bool {
    if strings.ToLower(a) > strings.ToLower(b) {
      return true
    } else {
      return false
    }
  }

  //removing duplicates
func removeDuplicates(B []string) []string {
    encountered := map[string]bool{}

    // Create a map of all unique elements.
    for v:= range B {
        encountered[B[v]] = true
    }

    // Place all keys from the map into a slice.
    result := []string{}
    for key, _ := range encountered {
        result = append(result, key)
    }
    fmt.Println("Duplicates removed:", result )
    return result
}

func main(){
    //q3
    B := []string{"y", "a", "a", "a", "c", "e", "g", "w", "w", "w"}
    fmt.Println(isSeparated(B))
}



【问题讨论】:

    标签: algorithm go alphabetical


    【解决方案1】:

    我不太了解您尝试确定分离的部分。在 Go 中,就像在 C 中一样,您可以对字符进行算术运算。例如,您将获得每个小写字母的从 0 开始的索引:

    pos := char - 'a';
    

    你可以把"abxyz"转到

    {0, 1, 23, 24, 25}.
    

    如果你取相邻字母之间的差,你会得到

    {-25, 1, 22, 1, 1}
    

    (-25 是最后一个值和第一个值之间的差值。)您有两个间隙:一个是循环从 b 和 w 开始,另一个是字母环绕。第二个差距是差异为负的地方,总是在最后一项和第一项之间。您可以将差值加 26 来调整它,或者您可以使用模算术,其中您使用余数 % 来解释包装:

    diff := ((p - q + 26) % 26;
    

    如果第一个操作数为正数,% 会将结果强制为 0 到 25 的范围。 + 26 表示它是正数。 (下面的程序用的是25,因为你对分隔的定义不是位置差,而是中间的lterres个数。)

    现在你有不同了

    {1, 1, 22, 1, 1}
    

    当您最多只有两个不同的值并且其中一个最多出现一次时,您的条件就满足了。 (这是一个我发现测试起来非常复杂的条件,见下文,但部分原因是 Go 的地图有点麻烦。)

    不管怎样,代码如下:

    package main
    
    import "fmt"
    
    func list(str string) int {
        present := [26]bool{}
        pos := []int{}
    
        count := map[int]int{}
    
        // determine which letters exist
        for _, c := range str {
            if 'a' <= c && c <= 'z' {
                present[c-'a'] = true
            }
        }
    
        // concatenate all used letters (count sort, kinda)
        for i := 0; i < 26; i++ {
            if present[i] {
                pos = append(pos, i)
            }
        }
    
        // find differences
        q := pos[len(pos)-1]
        for _, p := range pos {
            diff := (p - q + 25) % 26
    
            count[diff]++
            q = p
        }
    
        // check whether input is a "rambai"
        if len(count) > 2 {
            return -1
        }
    
        which := []int{}
        occur := []int{}
        for k, v := range count {
            which = append(which, k)
            occur = append(occur, v)
        }
    
        if len(which) < 2 {
            return which[0]
        }
    
        if occur[0] != 1 && occur[1] != 1 {
            return -1
        }
    
        if occur[0] == 1 {
            return which[1]
        }
    
        return which[0]
    }
    
    func testme(str string) {
        fmt.Printf("\"%s\": %d\n", str, list(str))
    }
    
    func main() {
        testme("zzzzyyyybbbzzzaaaaaxxx")
        testme("yacegw")
        testme("keebeebheeh")
        testme("aco")
        testme("naan")
        testme("mississippi")
        testme("rosemary")
    }
    

    https://play.golang.org/p/ERhLxC_zfjl

    【讨论】:

    • 非常感谢!它可以按照问题的要求工作。我真的很感激这一点。但是,如果我想使用“sortedrambai(str, k)”方法对 rambai 进行排序并返回 1) 不同字母数量的升序中的所有 rambai。 2) 长度的升序 3) 按字母顺序。例如,我希望 rambai 为 0,因此将是: sortedrambai(str, 0) 返回 [aa, bb, bb, dd, .... poop, tutu, deeded, abc, rust....] 等
    • 嗨@anon_n52:这是一个简单的问题,将结果存储在数组或结构切片中,然后对这些结果进行排序。坦率地说,这一切看起来像是一些功课。很明显,您在一些基本概念方面仍然存在问题。这并不丢人,但您应该尝试了解数组和结构的工作原理。获得经验需要时间,如果我在这里提供现成的解决方案也无济于事。 (问题可能是我发现的大多数 Go dcos 和教程似乎都是针对那些已经知道如何用另一种语言(例如 C 或 C++)编程的广告人员。)
    • 我完全明白了。老实说,是的,我仍然在努力理解 Go,因为我们一直在使用 java。但非常感谢您的时间和精力。我真的明白你的解释。再次感谢您,对造成的任何不便深表歉意!
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2014-08-05
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2013-05-02
    相关资源
    最近更新 更多