##General English:6-Elementary ###1 Vocabulary Metting words agenda,items,new hires,short time,for personal reasons,visitors,clean up,continue,update ...
分类:
其他好文 时间:
2021-05-23 22:57:55
阅读次数:
0
什么是BOM头 Unicode的学名是"Universal Multiple-Octet Coded Character Set",简称为UCS。UCS可以看作是"Unicode Character Set"的缩写。在UCS 编码中有一个叫做 "Zero Width No-Break Space", ...
分类:
其他好文 时间:
2021-05-04 16:35:28
阅读次数:
0
https://nanti.jisuanke.com/t/42586 题意: 给定以$1$为根的有向树,编号为$i$的点具有权值$v_i$,问树上存在多少有序对${x, y}$,设$LCA_{x, y} = z$,使得$x \neq z$,\(y \neq z\),$x$和$y$的树上距离不超过$k ...
分类:
其他好文 时间:
2021-05-04 16:27:17
阅读次数:
0
今天想给一个 Static 控件添加一个鼠标相关的事件:移入,移出,按下,松开事件 一开始以为在 while (GetMessage (&messages, NULL, 0, 0)) { /* Translate virtual-key messages into character message ...
#include<vector> #include<queue> #include<string> #include<binaryNode.hpp> #include<iostream> #include<sstream> template<typename T> class traverse { ...
分类:
其他好文 时间:
2021-05-04 15:34:11
阅读次数:
0
#!/bin/bash while read linedo echo $line txt=`echo $line |awk -F' ' '{print $1}'` id=`echo $line|awk -F' ' '{print $3}'` echo $txt echo $id sed "s/ws2 ...
分类:
系统相关 时间:
2021-05-03 12:39:24
阅读次数:
0
一、目标 会PICO引脚的使用 点亮LED 二、上程序 import machine import utime led_onboard = machine.Pin(25, machine.Pin.OUT) while True: led_onboard.value(1) utime.sleep(5) ...
分类:
其他好文 时间:
2021-05-03 12:32:04
阅读次数:
0
Java Redis安装引用及常用操作工具类 Java 时间日期字符串获取处理工具类 Java String字符串处理判断工具类 Java 使用正则表达式判断字符串格式工具类 原文地址:https://blog.csdn.net/a991361563/article/details/11630651 ...
分类:
编程语言 时间:
2021-05-03 11:59:06
阅读次数:
0
代码有一个bug,当数组长度为13的时候,查找数组最后一个数时会报数组角标越界。将代码: //获取到斐波那契分割数值的下标 while (high > f[k] - 1) { k++; } 改成 //获取到斐波那契分割数值的下标 while (high >= f[k] - 1) { k++; } 就 ...
分类:
编程语言 时间:
2021-04-30 12:34:46
阅读次数:
0
实验任务1 #include <stdio.h> long long fun(int n); // 函数声明 int main() { int n; long long f; while(scanf("%d", &n) != EOF) { f = fun(n); // 函数调用 printf("n ...
分类:
编程语言 时间:
2021-04-30 12:31:46
阅读次数:
0