问题: Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. 官方难度: Easy 翻译: 实现atoi功能,将一个字符串转化成一个整数. 提示:仔细考虑各种可能出现的情况. 补充资料: 所谓atoi,是C语言库中的一个函数,其功能如下: Requirements for atoi: The function first discards as ma…