题目链接:点击打开链接
Easy Delete
Time Limit: 1000ms, Special Time Limit:2500ms, Memory Limit:65536KB
Total submit users: 8, Accepted users: 4
Problem 13103 : No special judgement
...
分类:
其他好文 时间:
2014-11-28 20:11:51
阅读次数:
340
学习Android4.0的ActionBar,遇到一个特别恶心的问题,必须记下来。我开始新建的2.2的工程,后来想测试ActionBar,看到文档说是11以后才能用,我就直接把项目改成了min:14,target:17。这也是隐患的开始。在程序里面调用下面这句获取actionBar,但是返回的总是null的,不知道为..
分类:
移动开发 时间:
2014-11-28 18:30:23
阅读次数:
169
Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
Follow up:
Can you solve it without using extra space?
#include
#include
typedef struct ListNode...
分类:
其他好文 时间:
2014-11-28 18:22:51
阅读次数:
172
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
#include
#include
typedef struct ListNode {
int val;
struct ListNode *nex...
分类:
其他好文 时间:
2014-11-28 16:21:41
阅读次数:
179
You are given annxn2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?Hide TagsArray 一题严....
分类:
其他好文 时间:
2014-11-28 16:00:34
阅读次数:
128
The circuit inFigure 1produces a single debounced pulse each time you press S1. Moreover, the circuit uses only logic power from the remote pull-up re...
分类:
其他好文 时间:
2014-11-28 15:46:59
阅读次数:
174
The step-up switching-converter circuit inFigure 1presents a familiar problem: If you shut down boost converter IC1by pulling itsinput low, external i...
分类:
其他好文 时间:
2014-11-28 14:03:16
阅读次数:
131
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).
这个简单的问题可以这样解决:利用LeetCode[Tree]: Binary Tree Level...
分类:
其他好文 时间:
2014-11-28 10:15:15
阅读次数:
227
Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Follow up:Can you solve it without using extra space?A...
分类:
其他好文 时间:
2014-11-28 07:39:59
阅读次数:
201
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:
其他好文 时间:
2014-11-28 06:15:51
阅读次数:
215