码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
[Practical.Vim(2012.9)].Drew.Neil.Tip28 学习摘要
Tip28 Use Line Numbers as an Address If we enter an Ex command consisting only of a number, then Vim will interpret that as an address and move our cursor to the specified line.Specify a Range of Lines...
分类:系统相关   时间:2015-04-13 00:25:22    阅读次数:230
Leetcode: Swap Nodes in Pairs
题目: Given a linked list, swap every two adjacent nodes and return its head.For example, Given 1->2->3->4, you should return the list as 2->1->4->3.Your algorithm should use only constant space. You...
分类:其他好文   时间:2015-04-12 19:23:23    阅读次数:128
You need to use a Theme.AppCompat theme (or descendant) with this activity
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.test2/com.example.test2.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or desce...
分类:移动开发   时间:2015-04-12 17:51:58    阅读次数:412
Sort Colors -- leetcode
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue. Here, we will use the integers ...
分类:其他好文   时间:2015-04-12 17:48:54    阅读次数:131
Address already in use: JVM_Bind错误的解决
1,独立运行的Tomcat没有关闭.自安装的tomcat程序设置开机自动运行,或者在之前运行过,先关闭ecplipse或jbuilder,在任务管理器中找到Tomcat的进程,将其 kill掉,即可.有时候Tomcat非法关闭时,在进程中,仍然存在,仍然占用8080端口.所以只要将其进程杀掉.就可以...
分类:其他好文   时间:2015-04-12 16:08:44    阅读次数:101
leetcode------Clone Graph
标题:Clone Graph通过率:23.7%难度:中等OJ's undirected graph serialization:Nodes are labeled uniquely.We use#as a separator for each node, and,as a separator for...
分类:其他好文   时间:2015-04-12 16:03:28    阅读次数:143
Set Matrix Zeroes -- leetcode
Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. click to show follow up. Follow up: Did you use extra space? A straight forward solution using O(m...
分类:其他好文   时间:2015-04-12 10:40:06    阅读次数:107
sakila数据的使用学习记录
sakila数据库导入 下载好sakila数据库,看到里面会有sakila-data.sql数据文件和sakila-schema模式文件 在数据库上建立一个空的数据库create database sakila; use sakila 并使用source 命令 先导入模式文件source e:/sqldata/sakila-db/sakila-schema.sql; 再导入数据文件source e...
分类:其他好文   时间:2015-04-12 01:25:37    阅读次数:124
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!