本文主要是介绍工作问题和学习记录(九):LeetCode 633. Sum of Square Numbers (Easy) 680. Valid Palindrome II (Easy) 语言,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
本周末,学习了两道题目,都是为简单题,有所收获,还是锻炼思考。在此记录,若之后博客有所起色,打算聊得详细些。一方面,我的解题思路比较差,没什么好亮,之后有人愿意看,再讨论吧。
做这些题目,我的过程是,就是先自己按照思路将代码写出来,然后提交,再不断补全。在经过不断修改之后,还是不能通过全部的示例,往往看看别人的思路,将欠缺的补上。若是自身思路短缺太多,我会放弃,转而做其它事,之后做题也是暂时搁置,做之后的题目。
bool judgeSquareSum(int c){int i;//求c的开平方,平方根一定大于两个数//两个数的平方和等于c//left ^ 2 + right ^ 2 大于 c 则right左移long int left = 0;long int right = sqrt(c);while(left <= right){if(left * left + right * right < c){left++;}else if(left * left + right * right > c){right--;}else{return true;}}return false;
}
bool validPalindrome(char * s){int left = 0;int right = strlen(s) - 1;//int fristDis = 0;while(left < right){if(s[left] == s[right]){left++;right--;continue;}else{//if(!fristDis)//{int templeft = left + 1;int tempright = right;while (templeft < tempright){if (s[templeft] != s[tempright]){break;}templeft++;tempright--;}if ((templeft >= tempright) && s[templeft] == s[tempright] ){return true;}right = right - 1;while (left < right){if (s[left] != s[right]){break;}left++;right--;}if ((left >= right) && s[left] == s[right]){return true;}return false;//fristDis = 1;//}//else//{// return false;//}}}return true;
}
/*******************************************************************************************************/
不知不觉,在软件工作上有四个月,有感受到自身的进步。尽管水平还是不够看,但令自己庆幸的是有在进步,期望自己的努力能不断进步,也不断提高自己的收获(无论是生活还是精神方面hhhhhhhhhhhhhhhhhhh)。
这篇关于工作问题和学习记录(九):LeetCode 633. Sum of Square Numbers (Easy) 680. Valid Palindrome II (Easy) 语言的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!