登录
首页 >  Golang >  Go问答

使用 Go 语言在终端输出星号代替字符

来源:stackoverflow

时间:2024-03-13 13:27:25 498浏览 收藏

知识点掌握了,还需要不断练习才能熟练运用。下面golang学习网给大家带来一个Golang开发实战,手把手教大家学习《使用 Go 语言在终端输出星号代替字符》,在实现功能的过程中也带大家重新温习相关知识点,温故而知新,回头看看说不定又有不一样的感悟!

问题内容

我正在编写一个程序,将后缀表达式转换为其前缀形式(因此应该将“abc/-ak/l-*”转换为“*-a/bc-/akl”。规则是简单:如果它是一个字母或数字(操作数),那么它被推入堆栈,如果它是一个运算符,那么两个最后一个字符(比方说op1(最后一个)和op2(最后一个后面的那个))堆栈被弹出,然后与运算符 (temp = operator + op2 + op1) 连接,然后将该 temp 压入堆栈。

问题是,当使用 pop 时,操作数变成星号,我不知道为什么。也许需要指针?有人可以告诉我我做错了什么吗?非常感谢!

输入:“abc/-ak/l-*”

预期输出:“*-a/bc-/akl”

观察到的输出:“[***]”

import (
    "fmt"
)

type Stack []string

func (s *Stack) isEmpty() bool {
    return len(*s) == 0
}

func (s *Stack) push(value string) {
    *s = append(*s, value)
}

func (s *Stack) pop() (string, bool) {
    if s.isEmpty() {
        return "", false
    } else {
        elementIndex := len(*s) - 1
        element := (*s)[elementIndex]
        *s = (*s)[:elementIndex]
        return element, true
    }
}

func isOperator(character string) bool {
    switch character {
    case "+", "-", "*", "/":
        return true
    default:
        return false
    }

}

func input() {
    var stack Stack
    fmt.Print("Please input the equation without spaces: \n")
    input := "ABC/-AK/L-*"


    for _, character := range input {
        valueCheck := isOperator(string(character))
        if valueCheck == true {
            operand1 := input[len(input)-1]
            stack.pop()
            operand2 := input[len(input)-1]
            stack.pop()

            var temp string
            temp = string(character) + string(operand2) + string(operand1)
            stack.push(temp)

        } else {
            stack.push(string(character))
        }
    }

    fmt.Print(stack)

}

func main() {
    input()
}

正确答案


func input() {
    var stack stack
    fmt.print("please input the equation without spaces: \n")
    input := "abc/-ak/l-*"


    for _, character := range input {
        valuecheck := isoperator(string(character))
        if valuecheck {
            operand1 := stack[len(stack)-1]
            stack.pop()
            operand2 := stack[len(stack)-1]
            stack.pop()


            temp := string(character) + string(operand2) + string(operand1)
            stack.push(temp)

        } else {
            stack.push(string(character))
        }
    }

这将为您提供您所期望的结果。

一些旁注:

  1. if valuecheck == true 太多了,因为 valuecheck 是布尔类型
var temp string
temp = string(character) + string(operand2) + string(operand1)

也有点冗长

temp := string(character) + string(operand2) + string(operand1)

够了。

最好熟悉 dlv 调试器,这将在您下次不知所措时节省一些时间和精力。

理论要掌握,实操不能落!以上关于《使用 Go 语言在终端输出星号代替字符》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>