摘要:
问题描述 解决方案 cpp class Solution { public: //考虑溢出情况 int myAtoi(string str) { long long int lli=atoll(str.c_str()); if(lli 0&&lli INT_MAX) lli=INT_MAX; if( 阅读全文
摘要:
问题描述 解决方案 阅读全文
摘要:
问题描述 解决方案 阅读全文
摘要:
问题描述 解决方案 非递归方式 递归方式 阅读全文
摘要:
问题描述 解决方案 cpp class Solution { public: bool isPowerOfThree(int n) { if(n 阅读全文
摘要:
问题描述 解决方案 位运算 bitset 阅读全文