
--1.4.LeetCode
文章平均质量分 56
leoIsCoding
Github : [ https://github.com/leoChaoGlut ]
Email : [ leoIsCoding@163.com ]
展开
-
LeetCode:Top K Frequent Elements
Q:Given a non-empty array of integers, return the k most frequent elements.For example,Given [1,1,1,2,2,3] and k = 2, return [1,2].Note: You may assume k is always valid, 1 ≤ k原创 2016-06-30 21:11:10 · 1062 阅读 · 0 评论 -
LeetCode: Single Number
Q:Given an array of integers, every element appears twice except for one. Find that single one.思路:一个整数异或它本身,结果为0. 所以只要遍历一次数组即可得到只出现一次的数字.代码:public int singleNumber(int[] nums) { int le原创 2016-06-30 21:03:21 · 1078 阅读 · 0 评论 -
LeetCode:Group Anagrams
Q:Given an array of strings, group anagrams together.For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], Return:[ ["ate", "eat","tea"], ["nat","tan"], ["bat"]]原创 2016-06-30 21:55:46 · 1031 阅读 · 0 评论 -
LeetCode:Max Points on a Line
Q:Given n points on a 2D plane, find the maximum number of points that lie on the same straight line.思路:n个点,最多形成 (n-1)! 条线段,利用2个点p[i],p[j](j=i+1)可以得到它们所有的所属直线的斜率.以该斜率为key, Set为value,set中存放的是构成原创 2016-07-01 20:31:15 · 1054 阅读 · 0 评论