线程中的重要概念:并发:单个cpu通过cpu调度算法来回切换不同的任务,让用户看上去这些任务是同时执行的,其实是有先后顺序的,这是逻辑上的同时。“假并发”并行:多个cpu或物理主机处理多个任务,这是物理上的同时。也是真正的“并发”一图读懂并发并行:线程安全:由于java的多线程是一种并发编程,多个线... ...
分类:
编程语言 时间:
2020-05-14 15:41:24
阅读次数:
62
首先,简明扼要的表达观点和中心句:native的意思就是通知操作系统,这个函数你必须给我实现,因为我要使用。所以native关键字的函数都是操作系统实现的,java只能调用。JNI:java native interface ...
分类:
编程语言 时间:
2020-05-14 15:10:07
阅读次数:
54
Graph表示 1. adjacency matrix 2. 如下的,很多graph数据库用这种 use cases: ...
分类:
其他好文 时间:
2020-05-13 23:14:17
阅读次数:
61
git分布式控制系统 创建目录作为你的仓库,在目录中通过git init 命令进行初始化; 仓库可视为有3个区域:工作区、暂存区、版本区 git add xxx.txt :将xxx.txt文件从工作区转到暂存区 git commiit -m “备注” 将所有存在暂存区的文件都提交到版本区 git l ...
分类:
编程语言 时间:
2020-05-12 17:28:13
阅读次数:
87
1.双曲正切函数 tanh https://www.jiqizhixin.com/graph/technologies/9e8895bd-d540-43c0-8dc6-dc9e24e6bfd7,这个讲的挺全面的。 https://www.cnblogs.com/charlesblc/p/866073 ...
分类:
其他好文 时间:
2020-05-12 14:02:01
阅读次数:
56
在网上商城上,我们经常可以看到多级分类、子分类、甚至无限极分类。本文将向你展示如何优雅的通过 Laravel Eloquent 将其实现。 我们会创建一个微型项目来展示儿童商店的分类,总共有 5 级,如下: 数据库迁移 简单的数据表结构: Schema::create('categories', f ...
分类:
其他好文 时间:
2020-05-11 15:26:45
阅读次数:
76
阅读方法: 1,在2d 的例子上一点点往下简化,能够写一个python版本包最好 2,自己建一个 carto_ros 版本跑起来做对比,做注释 3,最好把 cartographer 也放到 catkin_ws下做方便源码阅读 ## scj# find_package(catkin REQUIRED) ...
分类:
其他好文 时间:
2020-05-11 00:46:19
阅读次数:
63
"题目" You are given a weighed undirected connected graph, consisting of $n$ vertices and $m$ edges. You should answer $q$ queries, the $i$ th query is ...
分类:
其他好文 时间:
2020-05-09 19:04:20
阅读次数:
66
var option = { title: { text: '带宽流入流出趋势图', textStyle: { fontSize: 14 } }, tooltip: { trigger: 'axis', axisPointer: { type: 'cross', label: { backgroun ...
分类:
其他好文 时间:
2020-05-09 15:29:58
阅读次数:
64
题目 You are given a weighed undirected connected graph, consisting of n vertices and m edges. You should answer q queries, the i th query is to find th ...
分类:
其他好文 时间:
2020-05-08 22:56:50
阅读次数:
83