同:都是能遍历集合(表、数组) 异:ipairs 仅仅遍历值,按照索引升序遍历,索引中断停止遍历。即不能返回 nil,只能返回数字 0,如果遇到 nil 则退出。它只能遍历到集合中出现的第一个不是整数的 key。 pairs 能遍历集合的所有元素。即 pairs 可以遍历集合中所有的 key,并且除 ...
分类:
其他好文 时间:
2018-11-22 13:14:18
阅读次数:
235
线段树:https://leetcode.com/tag/segment-tree/ |||||树状数组:https://leetcode.com/tag/binary-indexed-tree/ ...
分类:
编程语言 时间:
2018-11-15 16:14:10
阅读次数:
231
```cpp include using namespace std; define debug(x) cout" bomb,pairs,single; vector straight,aaab,aaabb; void shuffle(int a[],int lft,int rgt) { for(i ...
分类:
其他好文 时间:
2018-11-15 13:38:29
阅读次数:
116
Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), ..., (an, bn) which makes sum of ...
分类:
其他好文 时间:
2018-11-11 10:25:48
阅读次数:
211
Given an integer array, return the k-th smallest distance among all the pairs. The distance of a pair (A, B) is defined as the absolute difference bet ...
分类:
其他好文 时间:
2018-11-08 22:09:02
阅读次数:
142
https://leetcode.com/problems/find-k-pairs-with-smallest-sums/discuss/84551/simple-Java-O(KlogK)-solution-with-explanation public class Solution { pub... ...
分类:
其他好文 时间:
2018-11-08 18:15:10
阅读次数:
135
You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k. Define a pair (u,v) which consists of one element from th... ...
分类:
其他好文 时间:
2018-11-06 11:22:59
阅读次数:
191
题目:戳这里 题意:给1e5个字符串,问有多少对字符串组合,满足最多只有一种字符有奇数个。 解题思路:每种情况用map存一下就行了。感觉这题自己的代码思路比较清晰,所以写个题解记录一下 附ac代码: 1 #include <bits/stdc++.h> 2 using namespace std; ...
分类:
其他好文 时间:
2018-11-05 19:09:10
阅读次数:
164
class EdgeMinibatchIterator def __init__(self, G, id2idx, placeholders, context_pairs=None, batch_size=100, max_degree=25, n2v_retrain=False, fixed_n2 ...
分类:
其他好文 时间:
2018-11-04 00:26:14
阅读次数:
651
tornado异步原理 tornado有四类异步事件:立即事件,定时器异步事件,io异步事件,Future异步事件。 tornado 的ioloop管理所有的异步事件,并在适当的时机调用异步事件的回掉函数。 四类异步事件均在ioloop的start函数中调度。 立即事件: 场景:当前函数执行完后,下 ...
分类:
其他好文 时间:
2018-11-02 23:58:54
阅读次数:
372