码迷,mamicode.com
首页 >  
搜索关键字:not find    ( 24186个结果
虚拟机上在Linux系统中安装JDK的方法
1、 mkdir /soft (创建一个目录,用于存放安装软件) 2、 cd /soft (切换到soft目录)3、 rz(从windows中选择安装包)4、rmp -ivh jdk-7u45-linux-x64.rpm (安装JDK)5、find / -name 'jdk'6、vi /e...
分类:系统相关   时间:2014-07-31 20:13:27    阅读次数:327
Word Search
Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used more th...
分类:其他好文   时间:2014-07-31 17:16:57    阅读次数:221
poj 2251
Dungeon Master Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16437   Accepted: 6386 Description You are trapped in a 3D dungeon and need to find the quicke...
分类:其他好文   时间:2014-07-31 13:26:56    阅读次数:352
HDU 2141 Can you find it?
Problem DescriptionGive you three sequences of numbers A, B, C, then we give you a number X. Now you need to calculate if you can find the three numbe...
分类:其他好文   时间:2014-07-31 12:54:46    阅读次数:704
[转载]解决/usr/bin/ld: cannot find -lxxx
在linux环境编译应用程式或lib的source code时常常会出现如下的错误讯息:/usr/bin/ld: cannot find -lxxx这些讯息会随着编译不同类型的source code 而有不同的结果出来如:/usr/bin/ld: cannot find -lc/usr/bin/ld...
分类:其他好文   时间:2014-07-31 12:30:06    阅读次数:161
Median of Two Sorted Arrays
There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be ...
分类:其他好文   时间:2014-07-31 12:14:56    阅读次数:222
jquery拼接和拆分字符串,并加入特殊符号
$.fn.combineInput = function (_config) { var _config = $.extend({ addStr: "" }); var td = $(this); var input = td.find("input"); ...
分类:Web程序   时间:2014-07-31 12:08:36    阅读次数:547
并查集的 路径压缩(递归和非递归)
这里的思路是 在每一次的找父亲节点的时候我们把每一个孩子的父亲的改成他的祖先。因为有可能一个孩子的关系很复杂可能就是一条链,这样查找就没浪费时间。//这是简单的递归实现find (int x){ while(x!=father[x]) father[x] = find(father[x]) ; r....
分类:其他好文   时间:2014-07-31 09:38:15    阅读次数:205
Path Sum II leetcode java
题目:Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree and ....
分类:编程语言   时间:2014-07-31 05:22:15    阅读次数:287
Maximum Depth of Binary Tree leetcode java
题目:Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthes....
分类:编程语言   时间:2014-07-31 02:41:15    阅读次数:229
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!