NX9+VS2012 #include <uf.h> #include <uf_ui.h> #include <uf_ui_ont.h> #include <uf_camgeom.h> static int select_filter_proc_fn(tag_t object, int type[3 ...
分类:
移动开发 时间:
2021-02-20 12:37:26
阅读次数:
0
在命令行 net start mysql 开启MySQL服务; net stop mysql 关闭MySQL服务; MySQL目录下,输入mysql -u root -p 后回车,输入密码进入MySQL; show databases; 查看数据库, !!SQL语句结束时要用分号!! use 数据库 ...
分类:
数据库 时间:
2021-02-20 12:32:20
阅读次数:
0
开始使用Kubernetes和docker docker命令 运行一个容器 docker run busybox echo "Hello world" 构建容器镜像 docker build -t imageName . # docker bulid -t <imageName> <Dockerfi ...
分类:
Web程序 时间:
2021-02-19 13:44:05
阅读次数:
0
原题链接 考察:树形dp 这道题战略游戏要求看到所有的边,本题要求看到所有的点 没想出来,参考了大佬的思路 照搬大佬的思路: 设树上某点u能被看见,这个点要么自己安插士兵,要么父节点安插士兵,要么子节点安插士兵.设f[u,st]表示u的st状态的最小花费.st==0时,它u被父节点看见,st==1, ...
<build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includ ...
分类:
其他好文 时间:
2021-02-18 13:03:49
阅读次数:
0
Percolation API public class Percolation { public Percolation(int n) // create n-by-n grid, with all sites blocked public void open(int row, int col) ...
分类:
其他好文 时间:
2021-02-17 15:10:37
阅读次数:
0
安装 #!/bin/bash # Kali GNU/Linux Rolling apt-get install pasystray 常见错误列表 #1 (pasystray:30116): pasystray-WARNING **: [notify] unable to show notificat ...
分类:
其他好文 时间:
2021-02-17 14:46:33
阅读次数:
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
Spring Cloud Gateway:新一代API网关服务 摘要 Spring Cloud Gateway 为 SpringBoot 应用提供了API网关支持,具有强大的智能路由与过滤器功能 。 Gateway 简介 Gateway是在Spring生态系统之上构建的API网关服务,基于Sprin ...
分类:
编程语言 时间:
2021-02-16 12:07:18
阅读次数:
0
Security and Cryptography in Python - Block Cipher(2) Double DES from pyDes import * import random message = "01234567" key_11 = random.randrange(0, 2 ...
分类:
编程语言 时间:
2021-02-10 13:31:04
阅读次数:
0