leetcode 每日5题

1、Two Sum 【 difficulty:Easy 】

Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.

Example:
Given nums = [2, 7, 11, 15], target = 9,

Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
解题思路

1、将设定一个字典类型(Hash table),存一项的差值及原始下标,如2 存储为 7 :0
2、遍历次数组,将符合条件数据进行返回;

源码如下:

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        data={}
        for i,num in enumerate(nums):
            if num in data.keys():
                print(i,data[num])
            else:
                data[target-num]=i

执行结果如下:

 Run Code Result:
 Your input
 [3,2,4]6
 Your answer
 [1,2]
 Expected answer
 [1,2]
 Show Diff
 Runtime: 53 ms
2、Add Two Numbers 【 difficulty:Medium 】

You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.

You may assume the two numbers do not contain any leading zero, except the number 0 itself.

 Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
 Output: 7 -> 0 -> 8
解题思路

1、对单链表的考察
建立一个单链表模块,其主要性质如下:

# Definition for singly-linked list.
class ListNode(object): #定义单链表单个模块
    def __init__(self, x):
        self.val = x
        self.next = None

p=ListNode(1)
p.next=ListNode(2)
print(p.val,p.next.val,p.next.next)

### result ###

1 2 None

其解题源码如下:

# Definition for singly-linked list.
class ListNode(object):
    def __init__(self, x):
        self.val = x
        self.next = None

class Solution:
    def addTwoNumbers(self, l1, l2):
        if l1==None or l2==None: #判断l1、l2是否存在
            return l1,l2
        carry = 0
        root = n = ListNode(0)
        while l1 or l2 or carry:
            v1 = v2 = 0
            if l1:
                v1 = l1.val
                l1 = l1.next
            if l2:
                v2 = l2.val
                l2 = l2.next
            carry, val = divmod(v1+v2+carry, 10)  
            #divmod 返回一个数组(取整数,余数)
            n.next = ListNode(val)
            n = n.next
        return root.next
3. Longest Substring Without Repeating Characters

【 difficulty:Medium 】

 Given a string, find the length of the longest substring without 
 repeating characters.

 Examples:

 Given "abcabcbb", the answer is "abc", which the length is 3.

 Given "bbbbb", the answer is "b", with the length of 1.

 Given "pwwkew", the answer is "wke", with the length of 3. Note 
 that the answer must be a substring, "pwke" is a subsequence and 
 not a substring.
解题思路

采用数据结构:对HashMap[字典结构]进行构造,时间复杂度为o(n)

class Solution(object):
    def lengthOfLongestSubstring(self, s):
        """
        :type s: str
        :rtype: int
        """
        data = {}  # [length,str]
        start=0
        maxlen=0
        for i,char in enumerate(s):
            if char in data:
                start = data[char] + 1
            else:
                maxlen = max(maxlen, i - start+1)
                
            data[char]=i

        return(maxlen)

  1. Median of Two Sorted Arrays
class Solution {
    public double findMedianSortedArrays(int[] nums1, int[] nums2) {
        //归并排序
        
        int i=0,j=0,k=0,len=nums1.length+nums2.length;
        int addlist[]=new int[len];
        while((i<nums1.length)&&(j<nums2.length)){
            if(nums1[i]>nums2[j]){
                addlist[k]=nums2[j];
                k++;
                j++;
            }
    
            else{
                addlist[k]=nums1[i];
                k++;
                i++;
            }
        }
        while(j<nums2.length)
        {

            addlist[k]=nums2[j];
                k++;
                j++;
        }
        while(i<nums1.length)
        
        {
             addlist[k]=nums1[i];
                k++;
                i++;
        }
        
        if(len%2==0){
            return (addlist[len/2-1]+addlist[len/2])/2.0;
        }
        else
            return addlist[len/2];
     
    }
}
// 采用归并排序方法,时间复杂度为0(m+n),空间复杂度为0(m+n)
-----
//第二种采用 分治法,进行解决
package Merror;

//分治法,找到第 k/2-1大 ,然后返回数值;
        /* 试想一下,当要找两者的中间值,只需将两者的中间值作比较,若a/2>b/2,则代表 中值一定在 b/2-b 和 0-a/2之间,否则相反;
        故可以采用迭代方法进行解决;
      对于基偶性,可以取巧,不用进行判断;
      例如偶数可以巧用  int l = (m + n + 1) / 2;
                                     int r = (m + n + 2) / 2;
      分别取两次值,然后取平均值即可;
         */
class Solution {
    public double findMedianSortedArrays(int[] A, int[] B) {
        int m = A.length, n = B.length;
        int l = (m + n + 1) / 2;
        int r = (m + n + 2) / 2;
        return (getkth(A, 0, B, 0, l) + getkth(A, 0, B, 0, r)) / 2.0;
    }

    public double getkth(int[] A, int aStart, int[] B, int bStart, int k) {
        if (aStart > A.length - 1) return B[bStart + k - 1];
        if (bStart > B.length - 1) return A[aStart + k - 1];
        if (k == 1) return Math.min(A[aStart], B[bStart]);

        int aMid = Integer.MAX_VALUE, bMid = Integer.MAX_VALUE;
        if (aStart + k / 2 - 1 < A.length) aMid = A[aStart + k / 2 - 1];
        if (bStart + k / 2 - 1 < B.length) bMid = B[bStart + k / 2 - 1];

        if (aMid < bMid)
            return getkth(A, aStart + k / 2, B, bStart, k - k / 2);// Check: aRight + bLeft
        else
            return getkth(A, aStart, B, bStart + k / 2, k - k / 2);// Check: bRight + aLeft
    }
}


5、 Majority Element


class Solution(object):
    def majorityElement(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        start,maxth=1,nums[0]
        for i in range(1,len(nums)):
            if start==0:
                start=1
                maxth=nums[i]
            elif maxth==nums[i]:
                start+=1
            else:
                start-=1
        return maxth

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,417评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,921评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,850评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,945评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,069评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,188评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,239评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,994评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,409评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,735评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,898评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,578评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,205评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,916评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,156评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,722评论 2 363
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,781评论 2 351

推荐阅读更多精彩内容