码迷,mamicode.com
首页 >  
搜索关键字:javac target release    ( 36617个结果
ORA-01033: ORACLE 正在初始化或关闭
C:\Documents and Settings\Administrator>sqlplus /nologSQL*Plus: Release 10.2.0.1.0 - Production on 星期一 7月 5 09:50:36 2010Copyright (c) 1982, 2005, Ora...
分类:数据库   时间:2014-06-07 05:20:01    阅读次数:334
4Sum
Given an arraySofnintegers, are there elementsa,b,c, anddinSsuch thata+b+c+d= target? Find all unique quadruplets in the array which gives the sum of ...
分类:其他好文   时间:2014-06-04 22:44:27    阅读次数:250
布置第一个JBOSS服务器
还是要通过实践慢慢积累感觉。。SERVLET的制作,JAVAC的编译。。。package com.manning.jbia.intro;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.Servlet...
分类:其他好文   时间:2014-05-30 03:02:44    阅读次数:218
iOS设计模式之Target-Action
今天是我第一天写博客,可能有些地方我理解的不太好,写的不太清,请各位见谅,有哪些问题,请大神们指教iOS设计模式之Target-Action主要是为了降低代码的耦合性。顾名思义 Target-Action模式就是指目标-动作模式,它贯穿于iOS开发始终。提到Target-Action,先说2...
分类:移动开发   时间:2014-05-30 02:02:47    阅读次数:345
Could not resolve archetype org.apache.maven.archetypes:maven-archetype-quickstart
之前都是命令行创建,今天用eclipse装m2eclipse的时候装完后创建项目的时候报错:Could not resolve archetype org.apache.maven.archetypes:maven-archetype-quickstart:RELEASE from any of t...
分类:其他好文   时间:2014-05-29 23:15:49    阅读次数:244
Leetcode刷题录之Two Sum
题意大概是给出一个数列num,和一个目标数target,然后要找出数列中的两个数,使得这两个数之和等于目标数,输出这两个数的下标值(从1开始算)。 一个比较暴力的方法是用一个二重循环直接遍历序列,在第一重循环中找到a,在第二重循环中找到b,使得a+b=target,这种做法的时间复杂度是O(n^2....
分类:其他好文   时间:2014-05-29 21:01:06    阅读次数:307
Java程序员要求具备的10项技能
1、语法:必须比较熟悉,在写代码的时候IDE的编辑器对某一行报错应该能够根据报错信息知道是什么样的语法错误并且知道任何修正。2、命令:必须熟悉JDK带的一些常用命令及其常用选项,命令至少需要熟悉:appletviewer、HtmlConverter、jar、 java、javac、javadoc、j...
分类:编程语言   时间:2014-05-29 19:32:22    阅读次数:387
CentOS下yum安装wine
Linux下安装wine可以从源码编译安装,但一般都觉得麻烦,所以尽量利用yum进行安装,解决很多包的依赖关系。首先安装一个epelrpm-ivhhttp://dl.Fedoraproject.org/pub/epel/6/x86_64/epel-release-6-7.noarch.rpm有可能这...
分类:Windows程序   时间:2014-05-29 12:58:26    阅读次数:557
leecode -- 3sum Closet
Given an arraySofnintegers, find three integers inSsuch that the sum is closest to a given number, target. Return the sum of the three integers. You m...
分类:其他好文   时间:2014-05-29 11:04:43    阅读次数:200
leetcode -- 4sum
class Solution {public: vector > ret; vector subret;public: vector > fourSum(vector &num, int target) { sort(num.begin(),num.end()); ...
分类:其他好文   时间:2014-05-29 09:31:13    阅读次数:288
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!