原文: 题目:有一个有N个插槽的花园。 在每个插槽中,都有一朵花。 N朵花将在N天内逐一绽放。 每一天都会有一朵绽放的花朵,自此以后都是绽放的状态。 给定一个数组 flowers[ ] 由1到 N 的数字组成。数组中的每个数字代表当天花绽放的位置(插槽位置)。 例如,flowers [ i ] = ...
分类:
其他好文 时间:
2017-09-28 18:37:10
阅读次数:
199
class Solution { public: int reverse(int x) { int ret = 0; int int_max_divide_10 = INT_MAX / 10; int int_max_mod_10 = INT_MAX % 10; int int_min_divide... ...
分类:
其他好文 时间:
2017-09-16 19:05:19
阅读次数:
144
号称还有O(n)的算法: http://articles.leetcode.com/longest-palindromic-substring-part-ii/ 后面再研究, ...
分类:
其他好文 时间:
2017-09-03 01:12:33
阅读次数:
209
某同学的实验数据处理解决案例: 1.需求: 就是如果是两列中相同的规则,就用公式求和一下,不同就直接输出来 最终我的处理结果:大概花了两个小时解决了的方法。也是自己没有多动手。 处理方法代码是这样的。 代码: package leet.array; import java.io.BufferedRe ...
分类:
移动开发 时间:
2017-08-20 21:23:03
阅读次数:
327
题目: Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and ...
分类:
其他好文 时间:
2017-08-07 18:29:42
阅读次数:
105
题目: Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1’s in their binary representation a ...
分类:
其他好文 时间:
2017-07-25 21:16:29
阅读次数:
143
题目: Write a function to delete a node (except the tail) in a singly linked list, given only access to that node. Supposed the linked list is 1 -> 2 -> ...
分类:
其他好文 时间:
2017-07-23 22:38:03
阅读次数:
131
题目: Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not ...
分类:
其他好文 时间:
2017-07-14 22:08:56
阅读次数:
118
题目: Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra spac ...
分类:
其他好文 时间:
2017-07-03 17:23:39
阅读次数:
240
leetCode有道题Reverse Integer,因为int的最大值为2的31次方减一,最小值为-2的31次方。 我一开始的代码将res递归加放在try中,以为溢出会有异常,然而并没有。 因为出传入的参数为int类型,且内存和时间要求都能满足,所以long存放中间结果足够了。leet上有个哥们用 ...
分类:
编程语言 时间:
2017-06-27 20:48:32
阅读次数:
160