处理空字符串 忽略前置空格 保存符号 处理非法输入 处理溢出 import java.util.*; public class Solution { /** * * @param str string字符串 * @return int整型 */ public int atoi (String str) { // write code here int res =0, symbol = 1, i = 0, n = 0; if(str == null || str.equals(""))...