leetcode
文章平均质量分 66
小院子
talk is easy ,show me the code
展开
-
leetcode Add Two Numbers
思路: 1,新建第三个个链表,用来存储得到的和 2 ,判断给的两个字符串的长度,确定两个数的位数 3,从低位开始相加,如果超过十,则向高位进1;不足十的话直接保存 4,当数位低的链表加完后,如果没有进位,则所求数的高位数和较长的数组的高位数一样原创 2013-11-24 20:22:28 · 515 阅读 · 0 评论 -
寻找两个数组的中位数 Median of Two Sorted Arrays ***问题转化思想***
题目源自于Leetcode。经典好题。 题目: There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)). 给定两个有转载 2013-11-20 14:46:28 · 895 阅读 · 0 评论 -
LeetCode&&Longest Palindromic Substring
题目描述: 假设字符串s的最大长度为1000,而且有唯一的最长回文,找到s的最长回文子字符串; 思路一: 首先写出判断一个字符串是不是回文的方法遍历整个字符串,找出其中可以做回文中间数的那些字符(两个连续字符相等,或者字符两边的数相等),再进一步判段是不是回文,并找出该段回文的长度 class Solution { public: string longestPalindr原创 2013-11-25 09:44:06 · 537 阅读 · 0 评论 -
Sigl num @leetcode
eetcode -- Single Number Given an array of integers, every element appears twice except for one. Find that single one. Could you implement it without using extra memory? [解题思路] 以前看书时遇到过,一个转载 2013-12-03 15:05:38 · 536 阅读 · 0 评论