摘要: day1 字符串转换整数(有限状态机) 1、有限状态机的概念,怎么写?编译原理学过 class Solution { public: int myAtoi(string str) { long res = 0; int state = 0 ; // state == 0 为初始状态 ,1 为正整数状 阅读全文
posted @ 2021-01-03 22:30 UYNAIT 阅读(98) 评论(0) 推荐(0)