码迷,mamicode.com
首页 > 2014年05月05日 > 全部分享
虚拟机
通过虚拟机软件,你可以在一台物理计算机上模拟出另一台或多台虚拟的计算机,这些虚拟机完全就像真正的计算机那样进行工作,例如你可以安装操作系统、安装应用程序、访问网络资源等等。对于你而言,它只是运行在你物理计算机上的一个应用程序,但是对于在虚拟机中运行的应用程序而言,它就是一台真正计算机。因此,当你在虚...
分类:其他好文   时间:2014-05-05 22:42:12    阅读次数:371
[翻译] DTCoreText 从HTML文档中创建富文本
DTCoreText从HTML文档中创建富文本https://github.com/Cocoanetics/DTCoreText注意哦亲,DTRichTextEditor这个组件是收费的,不贵,才650美元而已^_^。DTCoreTextThis project aims to duplicate ...
分类:Web程序   时间:2014-05-05 22:41:41    阅读次数:470
Leetcode: Maximum Depth of Binary Tree
1 /** 2 * Definition for binary tree 3 * public class TreeNode { 4 * int val; 5 * TreeNode left; 6 * TreeNode right; 7 * TreeNo...
分类:其他好文   时间:2014-05-05 22:44:13    阅读次数:328
instance initializer
http://www.programcreek.com/2011/10/java-class-instance-initializers/
分类:其他好文   时间:2014-05-05 22:43:46    阅读次数:264
Leetcode: Same Tree
1 /** 2 * Definition for binary tree 3 * public class TreeNode { 4 * int val; 5 * TreeNode left; 6 * TreeNode right; 7 * TreeNo...
分类:其他好文   时间:2014-05-05 22:43:14    阅读次数:313
【LeetCode OJ】Word Ladder I
Problem Link:http://oj.leetcode.com/problems/word-ladder/Two typical techniques are inspected in this problem:Hash Table. One hash set is the words di...
分类:其他好文   时间:2014-05-05 22:44:44    阅读次数:393
Swap Nodes in Pairs
Link:http://oj.leetcode.com/problems/swap-nodes-in-pairs/Given a linked list, swap every two adjacent nodes and return its head.For example,Given1->2-...
分类:其他好文   时间:2014-05-05 22:45:37    阅读次数:331
Leetcode: Balanced Binary Tree
很锻炼DP/recursive思路的一道题,个人感觉DP/recursive算是比较难写的题目了。这道题解法的巧妙之处在于巧用-1,并且使用临时存储,节省了很多开支。这道题同时也在Career Cup上面出现过这道题我两次调试通过,第一次错是因为input{}, output false, expe...
分类:其他好文   时间:2014-05-05 22:45:10    阅读次数:352
Leetcode: Remove Duplicates from Sorted List
遇到的问题:input{1,1,1}, output{1,1}, expected{1}, 原因在于若temp.val==temp.next.val, 则需要temp.next=temp.next.next, 这时候就不要temp=temp.next了注意停止条件不光是temp!=null,还应该有...
分类:其他好文   时间:2014-05-05 22:47:08    阅读次数:454
Reverse Nodes in k-Group
Link:http://oj.leetcode.com/problems/reverse-nodes-in-k-group/Given a linked list, reverse the nodes of a linked listkat a time and return its modifie...
分类:其他好文   时间:2014-05-05 22:46:42    阅读次数:456
Reverse Linked List II
Link:http://oj.leetcode.com/problems/reverse-linked-list-ii/Reverse a linked list from positionmton. Do it in-place and in one-pass.For example:Given1...
分类:其他好文   时间:2014-05-05 22:46:11    阅读次数:411
检测android的网络链接状态
http://www.oschina.net/question/100267_61129?sort=default&p=1#tags_navhttp://www.cnblogs.com/top5/archive/2011/12/29/2306241.htmlhttp://www.open-open....
分类:移动开发   时间:2014-05-05 22:49:04    阅读次数:417
检测android的版本的办法
http://www.cnblogs.com/wzh206/archive/2010/05/02/1726076.html如何判断Android系统的版本随着Android版本的增多,在不同的版本中使用不同的设计是必须的,根据程序运行的版本来提供不同的功能。这涉及到如何在程序中判断Android系统...
分类:移动开发   时间:2014-05-05 22:48:30    阅读次数:435
android的edittext输入长度
http://blog.csdn.net/uyu2yiyi/article/details/6329738http://flysnow.iteye.com/blog/828415/http://songfantasy.iteye.com/blog/1172362
分类:移动开发   时间:2014-05-05 22:48:05    阅读次数:366
android的listview组件
http://www.cnblogs.com/menlsh/archive/2013/03/15/2962350.htmlhttp://www.tuicool.com/articles/IveeI3http://www.cnblogs.com/zhangs1986/archive/2013/01/1...
分类:移动开发   时间:2014-05-05 22:47:33    阅读次数:371
android的asynctask的使用案例
http://www.cnblogs.com/devinzhang/archive/2012/02/13/2350070.html
分类:移动开发   时间:2014-05-05 22:49:32    阅读次数:391
Easyradius 1.699更新,增加用户设备绑定、桥接用户管理功能
最近几天,由于IDC机房设备的问题,导致OA连接3天一天挂2次,真是把我抑闷着,最事一个烦事特别多好不容易等了一个五一假期,也不得空,把最近一些网友反馈的OA的一些功能及BUG进行修复,主要是以下几个大问题1、增加同步备注信息到路由的选项2、增加用户到期后,是否可以使用其他套餐充值卡充值3、增加用户...
分类:其他好文   时间:2014-05-05 22:50:31    阅读次数:332
806条   上一页 1 ... 36 37 38 39 40 41 42 ... 48 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!