码迷,mamicode.com
首页 >  
搜索关键字:find    ( 24186个结果
ipconfig | find /i "ipv4"
C:\Users\Bob>ipconfig|find /i "IPv" 本地链接 IPv6 地址. . . . . . . . : fe80::d495:6e3:6368:7d6c%5 IPv4 地址 . . . . . . . . . . . . : 169.254.80.80 本地链接 IPv6...
分类:其他好文   时间:2015-07-29 13:46:43    阅读次数:151
HDU OJ 5326 Work( 2015多校联合训练第3场) 并查集
题目连接:戳ME#include #include #include using namespace std;const int M = 1e2+5;int n, k;int par[M];int sum[M];void find(int x){ if( par[x]!=x ) { ...
分类:其他好文   时间:2015-07-29 11:46:01    阅读次数:110
Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two nu...
分类:其他好文   时间:2015-07-29 11:40:57    阅读次数:126
【LeetCode-面试算法经典-Java实现】【053-Maximum Subarray(最大子数组和)】
【053-Maximum Subarray(最大子数组和)】【LeetCode-面试算法经典-Java实现】【所有题目目录索引】原题  Find the contiguous subarray within an array (containing at least one number) which has the largest sum.   For example, given the ar...
分类:编程语言   时间:2015-07-29 07:55:12    阅读次数:131
find命令用法
find·find path -option [ -print ] [ -exec -ok command ] {} \;find命令的参数;pathname: find命令所查找的目录路径。例如用.来表示当前目录,用/来表示系统根目录。-print: find命令将...
分类:其他好文   时间:2015-07-29 06:14:38    阅读次数:143
HDU 2141 Can you find it? (二分法)
Can you find it? Time Limit:3000MS Memory Limit:10000KB 64bit IO Format:%I64d & %I64u DescriptionGive you three sequences of numbers A, B, C, then we....
分类:其他好文   时间:2015-07-28 22:40:22    阅读次数:75
Matlab实现求a到b被c整除的个数
我先想到的是for循环........ 然后sum(find(mod(a:b,c)==0)),从10到100得到874,为什么不对呢? 比如a = [1 2 3 4 2 3 4 2],find(a==0)得到的是[2 5 8],并不是[0 1 0 0 1 0 0 1],直接判断的话得到的是后...
分类:其他好文   时间:2015-07-28 20:49:46    阅读次数:129
jquery页面初始化控件时间
this.InitControlTime = function () { if ($("#txt_Id_").val() == "") { var today = new Date(); $("#form1").find(".d...
分类:Web程序   时间:2015-07-28 20:24:44    阅读次数:105
Unity查找脚本被哪些Perfab或场景引用
Unity中查找脚本被哪些Prefab或场景引用Unity中有个Find References In Scene的功能,但是只能查找在当前场景中的引用。 如果发现某个脚本不知道被挂在哪个Prefab上了,下面这个脚本你可能用得到 实现在查找脚本在哪些Prefab或者场景中被引用,查找脚本引用了哪些对象(脚本,Texture,字体等) 先看截图: 源码在这里using UnityEng...
分类:编程语言   时间:2015-07-28 18:36:41    阅读次数:288
[LeetCode] Minimum Path Sum
Minimum Path Sum Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path. Note: You can only move e...
分类:其他好文   时间:2015-07-28 18:36:31    阅读次数:68
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!