文章目录 基础绘图绘图类型点线参数三维绘图 Julia开发环境
基础绘图
Julia中最常用的绘图模块自然是Plots,点击]进入安装模式后,输入add Plots即可安装,装完之后按下退格键回到Julia环境,就可以调用了
using Plots
x 0:0.1:1…
Every day a Leetcode
题目来源:2246. 相邻字符不同的最长路径
解法1:树形 DP
如果没有相邻节点的限制,那么本题求的就是树的直径上的点的个数,见于Leetcode543. 二叉树的直径。
考虑用树形 DP 求直径。
枚举子树 x 的所有子…
s AsyncTask 在Android R中标注了废弃
synchronized 同步
Thread:
thread.start() public synchronized void start() {/*** This method is not invoked for the main method thread or "system"* group threads created/set up by the VM. Any new functionali…