Markdown: Syntax Text https://daringfireball.net/projects/markdown/syntax.text End ...
分类:
其他好文 时间:
2019-07-14 14:48:42
阅读次数:
76
[TOC] 概述 Map 集合是无序的 key value 数据结构。 Map 集合中的 key / value 可以是任意类型,但所有的 key 必须属于同一数据类型,所有的 value 必须属于同一数据类型,key 和 value 的数据类型可以不相同。 声明 Map 运行结果: 生成 JSON ...
分类:
其他好文 时间:
2019-07-09 13:53:07
阅读次数:
80
原题链接在这里:https://leetcode.com/problems/smallest-subtree-with-all-the-deepest-nodes/ 题目: Given a binary tree rooted at root, the depth of each node is t ...
分类:
其他好文 时间:
2019-07-08 13:58:55
阅读次数:
127
测量脉冲宽度或者测量频率 基本方法 1.设置TIM2?CH1为输入捕获功能; 2.设置上升沿捕获; 3.使能TIM2?CH1捕获功能; 4.捕获到上升沿后,存入capture_buf[0],改为捕获下降沿; 5.捕获到下降沿后,存入capture_buf[1],改为捕获上升沿; 6.捕获到上升沿后, ...
分类:
其他好文 时间:
2019-07-07 12:36:34
阅读次数:
293
前两节对Redis做了一些详细的介绍,那么接下来开始我们就正式进入Redis的学习阶段。 安装Redis Windows下安装redis非常方便, 下载压缩包解压即可使用。 链接:https://pan.baidu.com/s/1uvneRgpfiS35qtAdkGKfIQ 提取码:qcmx 解压后 ...
分类:
其他好文 时间:
2019-07-06 19:08:20
阅读次数:
113
离线安装vscode 插件: 1. 参考博客: https://blog.csdn.net/u012814856/article/details/80684376 2. vscode 离线市场地址:https://marketplace.visualstudio.com/vscode 搜索需要安装的 ...
分类:
其他好文 时间:
2019-07-06 19:02:21
阅读次数:
101
补题地址:https://www.jisuanke.com/contest/1847?view=challenges A:? B CDEF G:? HI:?J:? KLM ...
分类:
其他好文 时间:
2019-07-06 13:11:40
阅读次数:
96
from pymysql import connect def check_data(cur): sql = "select * from student;" # sql语句 cur.execute(sql) # 执行sql语句 # 获取查询的所有记录 result = cur.fetchall() ...
分类:
数据库 时间:
2019-07-05 22:40:57
阅读次数:
148
There are two type of people in the society. People who do manual works can higher payment than people who work in the office. We usually called the l ...
分类:
其他好文 时间:
2019-07-04 11:06:20
阅读次数:
117
内核编译:2.6---->3.0单内核:模块化(文件系统,驱动,安全)配置:./config保存配置文件(/proc/cpuinfo,lspci,lsusb,hal-device)makemenuconfigmakegconfigmakekconfigmakeconfigmakeoldconfig编译make只编译部分源码makeSUBDIR=arch/makedirvers/net/pcn
分类:
其他好文 时间:
2019-07-02 19:15:02
阅读次数:
104