首页 > 2014年06月27日 > 全部分享
[leetcode] N-Queens II
Now, instead outputting board configurations, return the total number of distinct solutions.
分类:其他   时间:2014-06-27 11:40:32    收藏:0  评论:0  赞:0  阅读:255
[leetcode] Spiral Matrix II
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.
分类:其他   时间:2014-06-27 11:41:09    收藏:0  评论:0  赞:0  阅读:299
Ubuntu中Git服务器搭建
git服务器搭建过程参考网上资料搭建git服务器过程记录 如下:需求硬件需求:一台Ubuntu或者debian电脑(虚拟机),能通过网络访问到。软件需求:git-core, gitosis, openssh-server, openssh-client, Apache2(Gitweb)安装配置git...
分类:其他   时间:2014-06-27 11:41:42    收藏:0  评论:0  赞:0  阅读:498
[leetcode] Jump Game
Given an array of non-negative integers, you are initially positioned at the first index of the array.
分类:其他   时间:2014-06-27 11:42:22    收藏:0  评论:0  赞:0  阅读:297
CREATE OR REPLACE FUNCTION
CREATE OR REPLACE FUNCTION SF_Taishou_Ksai_Date(v_receiptNum IN CHAR, v_his IN CHAR) RETURN VARCHAR2 DETERMINISTIC IS RESULT VARCHAR2(50); v_result_t ...
分类:其他   时间:2014-06-27 11:43:07    收藏:0  评论:0  赞:0  阅读:494
[leetcode] Maximum Subarray
Find the contiguous subarray within an array (containing at least one number) which has the largest sum.
分类:其他   时间:2014-06-27 11:43:43    收藏:0  评论:0  赞:0  阅读:301
[leetcode] Insert Interval
Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).
分类:其他   时间:2014-06-27 11:44:24    收藏:0  评论:0  赞:0  阅读:277
Java虚拟机工作原理具体解释
一、类载入器首先来看一下java程序的运行过程。 从这个框图非常easy大体上了解java程序工作原理。首先,你写好java代码,保存到硬盘其中。然后你在命令行中输入javac YourClassName.java此时,你的java代码就被编译成字节码(.class).假设你是...
分类:编程语言   时间:2014-06-27 11:45:45    收藏:0  评论:0  赞:0  阅读:356
HP-JavaUtil: xls 操作类
Written In The Font谢谢,陈明.哈哈!共勉,努力搞定它.路漫漫其修远兮,吾将上下而求索ContentExportExcelAndSave( String[] header, List excelList, String sheetTitle, String filePath, St...
分类:编程语言   时间:2014-06-27 11:45:09    收藏:0  评论:0  赞:0  阅读:391
iphone获取当前流量信息
通过读取系统网络接口信息,获取当前iphone设备的流量相关信息,统计的是上次开机至今的流量信息.?1. [代码][C/C++]代码 -(void)checkNetworkflow{ struct ifaddrs *ifa_list = 0, *ifa; if (getifaddrs(&ifa...
分类:其他   时间:2014-06-27 11:46:21    收藏:0  评论:0  赞:0  阅读:331
第二章:自然语言处理———从规则到统计
任何语言,都可以被认为是一种编码方式,而语言的语法规则是编码解码的算法。我们把我们要表达的意思,通过一句话(一种编码)传送出去,听到这句话的人(接到编码信息),理解这句话(解码),从而理解对方要表达的意思。这是一个比较有趣又生动的过程。自然语言处理可以说是从1950年开始的,至今有60多年的历史。但...
分类:其他   时间:2014-06-27 11:47:00    收藏:0  评论:0  赞:0  阅读:321
errno错误号含义
errno0 : Successerrno1 : Operation not permittederrno2 : No such file or directoryerrno3 : No such processerrno4 : Interrupted system callerrno5 : Inp...
分类:其他   时间:2014-06-27 11:47:37    收藏:0  评论:0  赞:0  阅读:571
[leetcode] Permutations II
Given a collection of numbers that might contain duplicates, return all possible unique permutations.
分类:其他   时间:2014-06-27 11:48:17    收藏:0  评论:0  赞:0  阅读:275
[leetcode] Permutation Sequence
The set [1,2,3,…,n] contains a total of n! unique permutations.
分类:其他   时间:2014-06-27 11:49:40    收藏:0  评论:0  赞:0  阅读:282
XCode在工程中创建多个目标项目
分类:其他   时间:2014-06-27 11:48:59    收藏:0  评论:0  赞:0  阅读:350
安装JDK
摘自:Jdk1.7 32位下载1.7.0.45 官方最新版一、JDK简介 JDK(Java Development Kit)是整个Java的核心,包括了Java运行环境、Java工具和Java基础类库。JDK作为JAVA开发的环境,不管是做JAVA开发还是做安卓开发,都必须在电脑上安装JDK。二、....
分类:其他   时间:2014-06-27 11:50:18    收藏:0  评论:0  赞:0  阅读:312
阿里云上SVN搭建
操作系统centOs6.31、安装#yum install subversion#判断是否安装成功#subversion -v#或者svnserve --version#建立SVN库。#mkdir /opt/svn/repos#svnadmin create /opt/svn/repos执行上面的命...
分类:其他   时间:2014-06-27 11:50:50    收藏:0  评论:0  赞:0  阅读:418
[leetcode] Jump Game II
Given an array of non-negative integers, you are initially positioned at the first index of the array.
分类:其他   时间:2014-06-27 11:52:08    收藏:0  评论:0  赞:0  阅读:341
[leetcode] Spiral Matrix
Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.
分类:其他   时间:2014-06-27 11:51:30    收藏:0  评论:0  赞:0  阅读:297
Others_Oracle Erp 11i 和 R12的区别概述(概念)
20140-06-26 BaoXinjian一、不同点11、架构变了,原来的SOB现在叫Ledger2、客户、供应商、税提升了一个级别3、客户、供应商、银行改为web界面的4、AR、AP可以支持在一个职责下跨OU查询和录入。5、引入SLA架构,数据逻辑更清晰。另外从子模块到总账的数据形式和生成的摘要...
分类:数据库技术   时间:2014-06-27 11:53:24    收藏:0  评论:0  赞:0  阅读:898
1543条   上一页 1 ... 29 30 31 32 33 ... 78 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!