百度网盘下载地址(964):点击下载 ? #include <reg52.h> #define uchar unsigned char #define uint unsigned int #include <intrins.h> /* 数码管段选定义 0 1 2 3 4 5 6 7 8 9 */ u ...
分类:
其他好文 时间:
2021-02-23 13:58:44
阅读次数:
0
Vue3 与依赖注入 本文写于 2021 年 2 月 19 日 在 React 中,我们可以通过 context 与 useContext 实现单例、注入……等诸多特性。 详细请看上一篇文章:如何利用 React Hooks 管理全局状态. 例如: const SomeService = creat ...
分类:
其他好文 时间:
2021-02-20 11:52:05
阅读次数:
0
参考了jherr 的webpack 联邦多版本,基于unpkg 以及verdaccio实现一个私有版本的测试环境 环境准备 docker-compose version: "3" services: unpkg: image: dalongrong/unpkg:http-env environmen ...
分类:
Web程序 时间:
2021-02-19 13:41:46
阅读次数:
0
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:
其他好文 时间:
2021-02-18 13:06:04
阅读次数:
0
import axios from "axios"; //第一种方式 export function request(config,success,failure) { const instance = axios.create({ baseURL:"http://123.207.32.32:800 ...
分类:
移动开发 时间:
2021-02-18 12:52:38
阅读次数:
0
vue.json { "Print to console": { "prefix": "vue", "body": [ "<template>", " <div>$0</div>", "</template>", "", "<script>", "export default {", " data ...
分类:
其他好文 时间:
2021-02-17 14:21:41
阅读次数:
0
https://frostytoolsuite.com/downloads.html 只支持Windows系统. 下载 Editor, 解压缩后启动FrostyEditor.exe, 选中游戏的执行文件例如 bf1.exe , 进入后按目录浏览打开音频文件, 点击工具栏上的Export即可. 支持的 ...
分类:
其他好文 时间:
2021-02-16 11:54:55
阅读次数:
0
\(\text{原题链接}\) \(\text{题目大意}\) 初始有一个长度为 \(n\) 的序列 \(a\),初始全 \(0\)。 共 \(m\) 次修改,每次修改 \((l,r,v)\),让 \(a_i = \max(a_i, v), (l\leq i\leq r)\)。求出所有操作后的 \( ...
分类:
其他好文 时间:
2021-02-15 12:15:44
阅读次数:
0
一、基础组件 export interface BaseProps { name: string; } export interface BaseState { age: number; } export class BaseComp<P extends BaseProps = any, S ext ...
分类:
其他好文 时间:
2021-02-15 11:51:28
阅读次数:
0
题目链接 题目大意 给你n个物品,每个物品有两个值一个为a,一个为b 要你拿任意的物品使得$\sum a/ \sum b=k ,且max(\sum a)$ \(1<=n<=100\; 1<=k=10\; 1<=a[i],b[i]<=100\) 题目思路 一个显然易见的思路设$dp[i][j]\(为是 ...
分类:
其他好文 时间:
2021-02-10 13:10:08
阅读次数:
0