一、基本概念最权威和官方的介绍请看google的api文档http://developer.android.com/training/basics/actionbar/setting-up.htmlhttp://developer.android.com/guide/topics/ui/action...
分类:
移动开发 时间:
2014-12-04 00:49:43
阅读次数:
232
1、查看进程第一种,用w查看进程:[root@localhost ~]# w 05:22:23 up 14 min, 2 users, load average: 0.00, 0.02, 0.06USER TTY FROM LOGIN@ IDLE ...
分类:
系统相关 时间:
2014-12-04 00:39:58
阅读次数:
396
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?使用双指针fast和slow,fast每次走两步,slow每次走一步,如果fast追...
分类:
其他好文 时间:
2014-12-03 23:04:47
阅读次数:
287
Follow up for "Search in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity? How and why?Write a function to...
分类:
其他好文 时间:
2014-12-03 22:50:41
阅读次数:
137
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 numbers such that they add up to the target, whe...
分类:
其他好文 时间:
2014-12-03 21:25:27
阅读次数:
167
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.Fo...
分类:
其他好文 时间:
2014-12-03 21:12:00
阅读次数:
153
Follow up for problem "Populating Next Right Pointers in Each Node".What if the given tree could be any binary tree? Would your previous solution stil...
分类:
其他好文 时间:
2014-12-03 21:11:53
阅读次数:
173
Given a binary tree, return thebottom-up level ordertraversal of its nodes' values. (ie, from left to right, level by level from leaf to root).For exa...
分类:
其他好文 时间:
2014-12-03 21:09:03
阅读次数:
119
bootloader启动代码;=========================================; NAME: 2440INIT.S; DESC: C start up codes; Configure memory, ISR ,stacks; Initialize...
分类:
其他好文 时间:
2014-12-03 18:41:20
阅读次数:
266
题目网址:https://oj.leetcode.com/problems/two-sum/题目描述:Given an array of integers, find two numbers such that they add up to a specific target number.The ...
分类:
其他好文 时间:
2014-12-03 14:07:05
阅读次数:
161