atoi的实现

自己实现了一个atoi函数,没有用到任何的库函数:

欢迎大家发表意见。

const int INT_MAX_MY = 0x7fffffff;
const int INT_MIN_MY = 0x80000000;
// Parse a string to a integer.
int atoi(char *str)
{
	char *pCur = str;
	int m;
	// Locate the first character because there maybe spaces.
	while(' ' == (*pCur))
		++pCur;
	// Resolve the first character.
	char cStart = *pCur;
	if(cStart >= '0' && cStart <= '9')
		m = 1;
	else
	{
		if('+' == cStart)
			m = 1;	
		else if('-' == cStart)
			m = -1;
		else
			return -1;
		++pCur;
	}
	// Store the number of numeric characters in a variable.
	int num = 0;
	// Traverse the string.
	while(*pCur)
	{
		if((*pCur) >= '0' && (*pCur) <= '9')
		{
			++num;
			++pCur;
		}
		else
		{
			if('.' == (*pCur))
				break;
			else if(' ' == (*pCur))
			{
				++pCur;
				continue;
			}
			else
				return -1;
		}
	}
	// Compute the integer.
	int result = 0;
	for(int i = 0; i < num; ++i)
	{
		// Skip the sapces.
		while(' ' == *(--pCur));
		int temp = m * ((*pCur) - '0');
		if(0 == i)
			result = temp;
		else
		{
			if(m >0)
			{
				// determine whether the number overflows.
				if((INT_MAX_MY - temp)>= result )
					result += temp;
				else
					return -1;
			}
			else
			{
				if((INT_MIN_MY - temp)<= result)
					result += temp;
				else
					return -1;
			}
		}
		m *= 10;
	}
	return result;
}


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值