【leetcode】8.String to Integer(atoi)(Medium)(C)

本文详细介绍了一种将字符串转换为整数的atoi函数的实现方法。解析了如何处理字符串中的空白字符、正负号及数字字符,确保转换过程的正确性和效率。同时,讨论了在32位有符号整数范围内处理溢出的情况。

Description:

Implement atoi which converts a string to an integer.
The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value.
The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.
If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists because either str is empty or it contains only whitespace characters, no conversion is performed.
If no valid conversion could be performed, a zero value is returned.

Note:

Only the space character ’ ’ is considered as whitespace character.
Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231, 231 − 1]. If the numerical value is out of the range of representable values, INT_MAX (231 − 1) or INT_MIN (−231) is returned.

Example1:

Input: “42”
Output: 42

Example2:

Input: " -42"
Output: -42
Explanation: The first non-whitespace character is ‘-’, which is the minus sign.
Then take as many numerical digits as possible, which gets 42.

Example3:

Input: “4193 with words”
Output: 4193
Explanation: Conversion stops at digit ‘3’ as the next character is not a numerical digit.

Example4:

Input: “words and 987”
Output: 0
Explanation: The first non-whitespace character is ‘w’, which is not a numerical
digit or a +/- sign. Therefore no valid conversion could be performed.

Example4:

Input: “-91283472332”
Output: -2147483648
Explanation: The number “-91283472332” is out of the range of a 32-bit signed integer.
Thefore INT_MIN (−231) is returned.

[ 题目链接 ]

int myAtoi(char* str) {
	//char c;
	int i = 0, j = 0, flag,len=0, tmp = 0,flag3=0;
	//int pos_start, pos_end;
	int nums[11];

	//初始化nums数组
	for (int k = 0; k < 10; k++)
		nums[k] = -1;

	//剔除前面的空格和0
	while (str[i] == ' ')
		i++;
	while (str[i] == '0')
	{
		flag3 = 1;
		i++;
	}

	//判断第一个字符
	//
	if (str[i] - '0' >= 0 && str[i] - '0' <= 9)
		flag = 1;
	else if (str[i] == '+')
	{
		if (flag3 == 1)	return 0;
		flag = 1;
		i++;
	}
	else if (str[i] == '-')
	{
		if (flag3 == 1)	return 0;
		flag = -1;
		i++;
	}
	else
		return 0;

	//再踢一遍0
	while (str[i] == '0')
		i++;

	//将数字存储到数组nums中
	//因为int最大到10位,所以nums数组有11位(包含符号位)
	while (str[i] >= '0'&&str[i] <= '9'&&j < 10)
	{
		nums[j++] = str[i++] - '0';
		len++;
	}

	//录完10个数字之后字符串里面还有数字
	//数字就超过了10位,直接返回int的最大值
	if (str[i] >= '0'&&str[i] <= '9')  // 这里加个=
	{
		if (flag == 1)
			return 2147483647;
		else
			return INT_MIN;
	}

	//如果数字有10位
	if (j == 10)
	{
		//如果最高位大于2 直接返回最大值
		if (nums[0] > 2)
		{
			if (flag == 1)
				return INT_MAX;
			else return INT_MIN;
		}
		//如果最高位是2,且有10位,要进行超额的判断
		else if (nums[0] == 2)
		{
			for (int k = 1; k < 10; k++)
			{
				tmp = tmp * 10 + nums[k];
			}
			if (flag == 1)
			{
				if (tmp > 147483647)
					return 2147483647;
				else return 2000000000 + tmp;
			}
			else
			{
				if (tmp > 147483648)
					return INT_MIN;    //这里不能返回-2147483648
				else return -1 * (2000000000 + tmp);
			}
		}
	}

	//其余的进行正常处理
	tmp = 0;
	for (i = 0; nums[i] != -1&&i<len; i++)
		tmp = tmp * 10 + nums[i];
	return flag * tmp;

}

运行结果:
在这里插入图片描述

先看效果: https://renmaiwang.cn/s/jkhfz Hue系列产品将具备高度的个性化定制能力,并且借助内置红、蓝、绿三原色LED的灯泡,能够混合生成1600万种不同色彩的灯光。 整个操作流程完全由安装于iPhone上的应用程序进行管理。 这一创新举措为智能照明控制领域带来了新的启示,国内相关领域的从业者也积极投身于相关研究。 鉴于Hue产品采用WiFi无线连接方式,而国内WiFi网络尚未全面覆盖,本研究选择应用更为普及的蓝牙技术,通过手机蓝牙与单片机进行数据交互,进而产生可调节占空比的PWM信号,以此来控制LED驱动电路,实现LED的调光功能以及DIY调色方案。 本文重点阐述了一种基于手机蓝牙通信的LED灯设计方案,该方案受到飞利浦Hue智能灯泡的启发,但考虑到国内WiFi网络的覆盖限制,故而选用更为通用的蓝牙技术。 以下为相关技术细节的详尽介绍:1. **智能照明控制系统**:智能照明控制系统允许用户借助手机应用程序实现远程控制照明设备,提供个性化的调光及色彩调整功能。 飞利浦Hue作为行业领先者,通过红、蓝、绿三原色LED的混合,能够呈现1600万种颜色,实现了全面的定制化体验。 2. **蓝牙通信技术**:蓝牙技术是一种低成本、短距离的无线传输方案,工作于2.4GHz ISM频段,具备即插即用和强抗干扰能力。 蓝牙协议栈由硬件层和软件层构成,提供通用访问Profile、服务发现应用Profile以及串口Profiles等丰富功能,确保不同设备间的良好互操作性。 3. **脉冲宽度调制调光**:脉冲宽度调制(PWM)是一种高效能的调光方式,通过调节脉冲宽度来控制LED的亮度。 当PWM频率超过200Hz时,人眼无法察觉明显的闪烁现象。 占空比指的...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值