摘要:
题目: Determine whether an integer is a palindrome. Do this without extra space. 题目大意: 判断一个数字是不是回文数,要求不是用额外的空间。 思路: 最近的几道LeetCode的题很简单,答题思路就是将原数... 阅读全文
摘要:
题目: Implement atoi to convert a string to an integer. 题目大意: 将一个数字字符串转化为整数数字,返回整数数字。 思路: 初看本题觉得很简单,直接用一个循环进行转换就行了,循环里边的语句也很简单,就是result = resul... 阅读全文