请实现一个函数按照之字形顺序打印二叉树,即第一行按照从左到右的顺序打印,第二层按照从右到左的顺序打印,第三行再按照从左到右的顺序打印,其他行以此类推。 例如:给定二叉树: [3,9,20,null,null,15,7], 3 / \ 9 20 / \ 15 7返回其层次遍历结果: [ [3], [2 ...
分类:
其他好文 时间:
2021-05-24 07:46:56
阅读次数:
0
语义化标签:标签本身能代表其含义 strong em h1~h6 p img a div ul ol table 表单中所有的标签都是语义化 非语义化标签:标签本身不能代表其含义 b i span u s del 文字标题:<h1></h1>~<h6></h6> <h1 align="center/ ...
分类:
其他好文 时间:
2021-05-24 07:30:31
阅读次数:
0
目录: 1.信号 1.1信号是什么 1.2信号的分类与特性 1.3信号的传输 2.双绞线与光纤 2.1双绞线 2.2光纤 3.无线传输 3.1什么是无线传输 3.2无线传输的介质 3.3无线电波 1,信号 1.1 信号是什么: 信号可以认为是由信息,数据,信号组成。 信息:传送或者表达的内容 数据: ...
分类:
其他好文 时间:
2021-05-24 07:29:39
阅读次数:
0
<div class="map3d-clear" title="清除全部点" onclick="celarPoint()"></div> .map3d-clear { border-radius: 5px; height: 32px; width: 32px; position: absolute; ...
分类:
其他好文 时间:
2021-05-24 07:24:11
阅读次数:
0
+ + + + + + + + + + | stream of elements + > |filter+-> |sorted+-> |map+-> |collect| + + + + + + + + + + stream() ? 为集合创建串行流。 forEach Stream 提供了新的方法 ' ...
分类:
其他好文 时间:
2021-05-24 06:53:50
阅读次数:
0
基于exynos4412的开发板,编写了一个使用中断的按键程序,实现按键点灯的功能。 实现效果是按下按键灯亮,再按一次灯灭。 旨在学习中断的用法。 linux kernel version:4.4.38 1 gpx3: gpx3 { 2 gpio-controller; 3 #gpio-cells ...
分类:
其他好文 时间:
2021-05-24 06:49:17
阅读次数:
0
先执行如下命令: sudo apt install fcitx-bin sudo apt-get install fcitx-table 一、 二、 三、 四、 五、安装 sudo dpkg -i sogoupinyin_2.4.0.3469_amd64.deb 安装会出现如下错误: 在命令行执行 ...
分类:
其他好文 时间:
2021-05-24 06:46:44
阅读次数:
0
错误如下: mount: wrong fs type, bad option, bad superblock on 192.168.1.7:data/nfsdir2, missing codepage or helper program, or other error (for several fi ...
分类:
其他好文 时间:
2021-05-24 06:40:25
阅读次数:
0
先用ifconfig br_name down 停掉网桥 再用brctl delbr br_name 删除网桥 为了方便,我编写了shell脚本来删除网桥 #!/bin/bash #本脚本删除的是br-开头的网桥 BRIDGE_LIST=$(sudo brctl show | cut -f 1 | ...
分类:
其他好文 时间:
2021-05-24 06:19:17
阅读次数:
0
查询的方法还挺多的 查询所有 这两个一样 db.getCollection('userInfo').find({}) db.userInfo.find() distinct db.userInfo.distinct("name") 返回去重复后的所有name字段的值 按条件查询 db.userInf ...
分类:
数据库 时间:
2021-05-24 06:17:50
阅读次数:
0