O(1)的空间内合并两个链表 python class ListNode: def __init__(self, x): self.val = x self.next = None def merge(l1, l2): head = point = ListNode(0) while l1 and ...
分类:
其他好文 时间:
2020-07-02 09:27:37
阅读次数:
56
这里提供一个Pinpoint2.X搭建重要信息,因为最近在搭建Pinpoint,基本全部的流程都走了一遍,我这边是准备自己后续维护Pinpoint,写插件是必须的,也有可能研究一下源码。 问题就是,如果你使用了hbase2.X作为Pinpoint的数据存储,那么就会遇到搭建完毕之后,web上的数据有 ...
分类:
其他好文 时间:
2020-07-02 00:04:38
阅读次数:
104
CVPR2020:三维点云无监督表示学习的全局局部双向推理 Global-Local Bidirectional Reasoning for Unsupervised Representation Learning of 3D Point Clouds 论文地址: https://openacces ...
分类:
其他好文 时间:
2020-07-01 17:26:25
阅读次数:
179
Table of Contents 术语 功能点 FP function point 基本概念 应用边界 application boundary 基本处理过程 elementary process 功能 function 要素类型 element type 估算方法 IFPUG估算 ,流程和规则 ... ...
分类:
其他好文 时间:
2020-07-01 14:11:33
阅读次数:
103
日文报告,用python实现简单的遗传算法和粒子群算法,代码附在最后。 ...
分类:
编程语言 时间:
2020-06-30 22:43:24
阅读次数:
68
要点:使用DMRP algorithm (decision making with a reference point)在重启阶段为解决问题提供好的方向。 引文来自: Kottler S. (2010) SAT Solving with Reference Points. In: Strichman ...
分类:
其他好文 时间:
2020-06-30 20:42:54
阅读次数:
56
// remote06.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h" BOOL func(DWORD ProcessID,char* Dll ...
我们可以通过QtCursor::setPos全局方法来进行鼠标位置的设置 以下的代码演示将光标移动到控件的左上角上。先将0,0点转换到桌面坐标 //QWidget* pWidget;QPoint pt(0,0);QPoint center = pWidget->mapToGlobal(pt);QCu ...
分类:
其他好文 时间:
2020-06-29 22:52:30
阅读次数:
227
CVPR2020:4D点云语义分割网络(SpSequenceNet) SpSequenceNet: Semantic Segmentation Network on 4D Point Clouds 论文地址: https://openaccess.thecvf.com/content_CVPR_20 ...
分类:
Web程序 时间:
2020-06-29 18:51:45
阅读次数:
99
前言: 本渣渣想分析分析Doug Lea大佬对高并发代码编写思路, 于是找到了我们今天的小主角ConcurrentLinkedQueue进行鞭打, 说实话草稿我都打好了, 就差临门一脚, 给踢折了 直接看问题, idea在Debug和非Debug模式下运行结果不同, vscode复现, eclips ...
分类:
系统相关 时间:
2020-06-29 13:28:18
阅读次数:
57