golang:LeetCode:8. 字符串转换整数 (atoi)

4 篇文章 0 订阅

LeetCode第8题: 字符串转换整数 (atoi).

本地可以用动态规划求解,先贴上官方的状态转移图片
在这里插入图片描述
这样我们可以直接去写代码了,非常简单

import (
	"math"
	"strconv"
)
//  			' '		+/-		number		other
//	start		start	signed	in_number	end
//	signed		end		end		in_number	end
//	in_number	end		end		in_number	end
//	end			end		end 	end			end
var statusTable = [][]int {
	{0, 1, 2, 3},
	{3, 3, 2, 3},
	{3, 3, 2, 3},
	{3, 3, 3, 3},
}

const (
	start = 0
	signed = 1
	in_number = 2
	end = 3

	space = 0
	sign = 1
	number = 2
	other = 3
)
func myAtoi(str string) int {
	result := 0
	nowStatus := start
	positiveorNegative := true
	for _, s := range str {
		nowStatus = getStatus(nowStatus, s)
		if nowStatus == end {
			break
		} else if nowStatus == signed {
			if s == '-' {
				positiveorNegative = false
			}
		} else if nowStatus == in_number {
			result = result * 10 + str2Num(string(s))
			if (result > math.MaxInt32 && positiveorNegative) || (!positiveorNegative && result < math.MinInt32) {
				if positiveorNegative {
					return math.MaxInt32
				} else {
					return math.MinInt32
				}
			}
		}
	}
	if positiveorNegative {
		if result > math.MaxInt32 {
			return math.MaxInt32
		}
		return result
	} else {
		if -result <= math.MinInt32 {
			return math.MinInt32
		}
		return -result
	}

}

func getStatus(beforeStatus int, s int32) int {	// 根据上次状态和现在的字符返回当前的状态
	var sType int
	if s == ' ' {
		sType = space
	} else if s == '-' || s == '+' {
		sType = sign
	} else if s >= '0' && s <= '9' {
		sType = number
	} else {
		sType = other
	}
	return statusTable[beforeStatus][sType]
}

func str2Num(str string) int {
	if intStr, err := strconv.Atoi(str); err == nil {
		return intStr
	}
	return -1
}

在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值