题目链接:点击打开链接
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
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
Must tri-state outputs and use an external resistor to pull up to 5VTo drive 5V CMOS-level inputs, a pull-up resistor must be applied to the 5V Virtex...
分类:
其他好文 时间:
2014-11-27 23:24:05
阅读次数:
243