码迷,mamicode.com
首页 >  
搜索关键字:follow    ( 4585个结果
leetcode - Linked List Cycle II
题目:Linked List Cycle IIGiven a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it withou...
分类:其他好文   时间:2014-07-07 13:44:29    阅读次数:281
leetcode 题解:Search in Rotated Sorted Array II (旋转已排序数组查找2)
题目:Follow up for "Search in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity? How and why?Write a function...
分类:其他好文   时间:2014-07-07 00:14:37    阅读次数:186
[LeetCode]Linked List Cycle II解法学习
问题描述如下: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 s...
分类:其他好文   时间:2014-07-03 21:00:48    阅读次数:401
leetcode 题解:Remove Duplicates from Sorted Array II(已排序数组去三次及以上重复元素)
题目:Follow up for "Remove Duplicates":What if duplicates are allowed at mosttwice?For example,Given sorted array A =[1,1,1,2,2,3],Your function should ...
分类:其他好文   时间:2014-07-03 12:10:12    阅读次数:191
android Performance 性能提升
1. 经常变动的字符串要用 StringBuilder,然后每次变动用 append 方法。而不应该每次创建新的 String。2. 使用 static final 变量。3. It's reasonable to follow common object-oriented programming ...
分类:移动开发   时间:2014-07-01 20:10:32    阅读次数:238
Linked List Cycle
题目 Given a linked list, determine if it has a cycle in it. Follow up: Can you solve it without using extra space? 方法 /** * Definition for singly-linked list. * class ListNode { ...
分类:其他好文   时间:2014-07-01 11:31:40    阅读次数:178
Linked List Cycle II
题目 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? 方法 public ListNode de...
分类:其他好文   时间:2014-07-01 11:30:58    阅读次数:200
Android Wear - Design Principles for Android Wear(设计原则)
原文地址:http://developer.android.com/design/wear/principles.html 本篇设计原则提供了一些关于应该怎样规划和评估你的Android Wear应用程序设计的简单思路。 Focus on not stopping the user and all else will follow(专注于不打算用户并让一切后续跟随上来) ...
分类:移动开发   时间:2014-07-01 11:28:20    阅读次数:309
Oracle并行查询出错
1、错误描述 ORA-12801: 并行查询服务器P007中发出错误信号 ORA-01722:无效数字 12801.00000 -"error signaled in parallel query server %s" *Cause: A parallel query server reached an exception condition. *Action: Check the follow...
分类:数据库   时间:2014-07-01 06:22:10    阅读次数:391
每日算法之三十七:Rotate Image (图像旋转)
You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Follow up: Could you do this in-place? 原地图像顺时针旋转90度。因为要求空间复杂度是常数,因此应该迭代旋转操作。 class ...
分类:其他好文   时间:2014-06-30 19:51:53    阅读次数:267
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!