码迷,mamicode.com
首页 >  
搜索关键字:pairs    ( 1028个结果
hadoop工作流调度系统
常见工作流调度系统 Oozie, Azkaban, Cascading, Hamake 各种调度工具特性对比 特性 Hamake Oozie Azkaban Cascading 工作流描述语言 XML XML (xPDL based) text file with key/value pairs J ...
分类:其他好文   时间:2017-03-17 11:07:38    阅读次数:266
算法(Algorithms)第4版 练习 1.5.6
对于weighted quick-union,对每个输入数据对,其最大的循环次数为lgN(sites) 故对于109 sites和106 input pairs,其总的指令次数为:sum = lg10^9 * 10^6 * 10 总的时间为:T = sum / 10^9 = 0.1s(约等于) ...
分类:编程语言   时间:2017-03-16 21:39:01    阅读次数:145
hdu1394线段树点修改,区间求和
Problem Description The inversion number of a given number sequence a1, a2, ..., an is the number of pairs (ai, aj) that satisfy i < j and ai > aj.For ...
分类:其他好文   时间:2017-03-10 23:41:29    阅读次数:229
zoj 2818 Root of the Problem
Given positive integers B and N, find an integer A such that AN is as close as possible to B. (The result A is an approximation to the Nth root of B.) ...
分类:其他好文   时间:2017-03-10 12:48:57    阅读次数:145
LeetCode 24 Swap Nodes in Pairs
题目链接: https://leetcode.com/problems/swap-nodes-in-pairs/?tab=Description Problem: 交换相邻的两个节点 如上图所示,递归进行交换。从最尾端开始,当最尾端只有一个节点时,停止交换 否则执行 swap(head.next) ...
分类:其他好文   时间:2017-03-09 20:59:40    阅读次数:198
vim 配置
set nocompatiblefiletype offset rtp+=~/.vim/bundle/vundle/call vundle#rc()Bundle 'gmarik/vundle'Bundle 'kien/ctrlp.vim'Bundle 'sjl/gundo.vim'Bundle 'j ...
分类:系统相关   时间:2017-03-06 19:44:41    阅读次数:287
LUA ipairs遍历的问题
t = { 1, 2, 3, nil, 4,} for k, v in ipairs(t) doprint(k, v)end print(" ") for k, v in pairs(t) doprint(k, v)end ...
分类:其他好文   时间:2017-03-01 11:01:41    阅读次数:169
Codeforces 748B Santa Claus and Keyboard Check
Santa Claus decided to disassemble his keyboard to clean it. After he returned all the keys back, he suddenly realized that some pairs of keys took ea ...
分类:其他好文   时间:2017-02-26 23:29:43    阅读次数:216
科研数据集下载
个人收集了一些网上开放的免费科研数据集,这里提供数据集列表以及下载地址,供高校和科研机构免费查询、下载和使用。 金融 美国 The Bureau of Labor Statistics 发布数据 上证A股日线数据,1999.12.09 至 2016.06.08,前复权,1095支股票 深证A股日线数 ...
分类:其他好文   时间:2017-02-25 13:36:42    阅读次数:942
Maximum Clique
Maximum Clique Problem Description Given a graph G(V, E), a clique is a sub-graph g(v, e), so that for all vertex pairs v1, v2 in v, there exists an e ...
分类:其他好文   时间:2017-02-18 22:29:12    阅读次数:212
1028条   上一页 1 ... 52 53 54 55 56 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!