From Tutte institute for mathematics and computing Problem: dimension reduction Theoretical foundations: Methodology: Two phases. In the first phase, ...
分类:
移动开发 时间:
2020-01-27 23:45:17
阅读次数:
134
题目内容 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would ha ...
分类:
其他好文 时间:
2020-01-27 19:08:41
阅读次数:
65
Cutting an integer means to cut a K digits lone integer Z into two integers of (K/2) digits long integers A and B. For example, after cutting Z = 1673 ...
分类:
其他好文 时间:
2020-01-27 17:11:56
阅读次数:
80
interface FastEthernet0 ip address dhcp ip nat outside ip virtual-reassembly ! interface FastEthernet1 no ip address pppoe enable no cdp enable ! inte ...
分类:
移动开发 时间:
2020-01-27 17:04:58
阅读次数:
83
"题目" 题意:找出数组里两个数字之和为指定数字的两个下标。 题解:双指针 ...
分类:
其他好文 时间:
2020-01-27 15:37:35
阅读次数:
56
There are a number of spherical balloons spread in two-dimensional space. For each balloon, provided input is the start and end coordinates of the hor ...
分类:
其他好文 时间:
2020-01-27 09:40:50
阅读次数:
81
[//title]:(解决vscode出现两个光标的问题) [//englishTitle]:(vscode two cursors in vim mode) [//category]:(vscode,vim,problem solved) [//tags]:(vscode) [//createTi ...
分类:
其他好文 时间:
2020-01-27 00:05:36
阅读次数:
477
给定两棵树 A, B。现你需要构造一组值 (X1, X2, ..., XN)(两棵树编号相同的点对应权值相同),使得两棵树内任意子树的权值和的绝对值为 1。
无解输出 IMPOSSIBLE。 ...
分类:
其他好文 时间:
2020-01-26 19:09:34
阅读次数:
102
又一篇3D点云detection的顶会。这篇文章是two stage的方法,非end-to-end。文章的前提是利用faster rcnn得到2D图像的image crop;然后才是本文介绍的PointFusion,即将image crop和对应的3D点云数据作为输入,得到3D box。可以说这篇文 ...
分类:
其他好文 时间:
2020-01-26 13:06:01
阅读次数:
76
采用希尔排序 1 #include <stdio.h> 2 3 #define MAXN 10 4 typedef float ElementType; 5 6 ElementType Median( ElementType A[], int N ); 7 8 int main () 9 { 10 ...
分类:
其他好文 时间:
2020-01-26 10:30:52
阅读次数:
166