您的位置:首页 > 房产 > 家装 > Golang | Leetcode Golang题解之第151题反转字符串中的单词

Golang | Leetcode Golang题解之第151题反转字符串中的单词

2025/1/8 4:52:43 来源:https://blog.csdn.net/weixin_66442839/article/details/139693052  浏览:    关键词:Golang | Leetcode Golang题解之第151题反转字符串中的单词

题目:

题解:

import ("fmt"
)func reverseWords(s string) string {//1.使用双指针删除冗余的空格slowIndex, fastIndex := 0, 0b := []byte(s)//删除头部冗余空格for len(b) > 0 && fastIndex < len(b) && b[fastIndex] == ' ' {fastIndex++}//删除单词间冗余空格for ; fastIndex < len(b); fastIndex++ {if fastIndex-1 > 0 && b[fastIndex-1] == b[fastIndex] && b[fastIndex] == ' ' {continue}b[slowIndex] = b[fastIndex]slowIndex++}//删除尾部冗余空格if slowIndex-1 > 0 && b[slowIndex-1] == ' ' {b = b[:slowIndex-1]} else {b = b[:slowIndex]}//2.反转整个字符串reverse(&b, 0, len(b)-1)//3.反转单个单词  i单词开始位置,j单词结束位置i := 0for i < len(b) {j := ifor ; j < len(b) && b[j] != ' '; j++ {}reverse(&b, i, j-1)i = ji++}return string(b)
}func reverse(b *[]byte, left, right int) {for left < right {(*b)[left], (*b)[right] = (*b)[right], (*b)[left]left++right--}
}

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com