此篇博客主要记录剑指offer中遇到的不会的题。 一、重建二叉树(剑指offer 07) medium 2021-06-22 输入某二叉树的前序遍历和中序遍历的结果,请重建该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。 解题思路:前序遍历的特点,根节点在第一位; 中序遍历的特点,根 ...
分类:
其他好文 时间:
2021-06-29 16:05:14
阅读次数:
0
Worker类:静态Worker统一管理实例worker 代码细节 $this->workerId = \spl_object_hash($this); static::$_workers[$this->workerId] = $this; static::$_pidMap[$this->worke ...
分类:
其他好文 时间:
2021-06-29 16:00:44
阅读次数:
0
原文链接:https://debugtalk.com/post/head-first-locust-advanced-script/ 关联 在某些请求中,需要携带之前从Server端返回的参数,因此在构造请求时需要先从之前的Response中提取出所需的参数。 1 from lxml import ...
分类:
其他好文 时间:
2021-06-29 15:24:26
阅读次数:
0
Public rnTem As Range Public stKehu As String Public temDingdan As String Public Const rowDingdan As Integer = 22 Public Sub ShengchengTongjiJine() Ap ...
分类:
其他好文 时间:
2021-06-29 15:20:19
阅读次数:
0
1、 a链接跳转的时候打开新的页面 < a href="index.html" target="_blank" >跳转打开一个新的页面(不刷新本页)</a> 2、 弹框通常需要一个透明度rgba(0,0,0,0.2) 黑色添加0.2的透明度 呈现遮罩层的效果 3、 background-color: ...
分类:
其他好文 时间:
2021-06-29 15:19:28
阅读次数:
0
Nuxt.js实现简单路由配置 本文将实现的路由页面关系: 实现的效果截图: 实现的代码: 首页代码 <!--首页index.vue--> <template> <div> <h1>我是首页-home</h1> <ul> <li><nuxt-link :to="{ name: 'index' }"> ...
分类:
Web程序 时间:
2021-06-29 15:16:23
阅读次数:
0
WPF特效——流光动画效果 一、代码 <Window.Resources> <!--外--> <Storyboard x:Key="Storyboard1" RepeatBehavior="Forever"> <PointAnimationUsingKeyFrames Storyboard.Targ ...
Dim DelegetSub1 As testDelegetSub = New testDelegetSub(AddressOf testDelegateSub2) Dim DelegetSub2 As testDelegetSub = New testDelegetSub(AddressOf te ...
分类:
其他好文 时间:
2021-06-28 21:10:35
阅读次数:
0
先安装 composer require jaeger/querylist 完成后会有jaeger文件 网页布局图 使用 use QL\QueryList; public function test() { $url = 'https://www.ivsky.com/tupian/wupin/ind ...
分类:
其他好文 时间:
2021-06-28 20:10:58
阅读次数:
0
Redis持久化 redis可以将数据写入到磁盘中,在停机或宕机后,再次启动redis时,将磁盘中的备份数据加载到内存中恢复使用。这是redis的持久化。持久化有如下两种机制。 RDB 快照持久化 redis可以将内存中的数据写入磁盘进行持久化。在进行持久化时,redis会创建子进程来执行。 red ...
分类:
其他好文 时间:
2021-06-28 19:51:24
阅读次数:
0