题目:People in Mars represent the colors in their computers in a similar way as the Earth people. That is, a color is represented by a 6-digit number, w ...
分类:
其他好文 时间:
2021-04-08 13:28:06
阅读次数:
0
在线调试地址: Graphviz Online 用法: dot语法 Linux环境下用法: 参考资料: 1. Linux绘图工具之dot 2. 实验: 首先创建一个dot文件,fllow.dot vi fllow.dot digraph G { hello [shape=box]; world [s ...
分类:
其他好文 时间:
2021-04-08 13:10:42
阅读次数:
0
SQL基础 SQl简介 SQL全称是structure qurry language,由IBM在上个世纪70年代开发出来。 SQL语句的分类 DDL(数据定义数据) 主要是数据库内部对象的创建,删除,修改的操作语言 创建数据库 create database name 使用数据库 use dbnam ...
分类:
数据库 时间:
2021-04-06 14:59:58
阅读次数:
0
(1) 电脑没有Hyper-V pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do d ...
模块 1、什么是模块 模块就是一系列功能的集合体 模块分为四种类别: 1、一个py文件就可以是一个模块 2、包:就是一个存放有__ init__.py文件的文件夹 3、使用C编写并链接到python解释器的内置模块 4、已被编译为共享库或DDL的C或C++扩展 模块有三种来源: 1、python解释 ...
分类:
其他好文 时间:
2021-04-01 13:48:30
阅读次数:
0
http://www.pipioj.online/problem.php?id=1023 每次把当前的放在能排的当中最矮的一队里就ok 1 #define IO std::ios::sync_with_stdio(0); 2 #define bug(x) cout<<#x<<" is "<<x<<e ...
分类:
其他好文 时间:
2021-03-15 11:32:55
阅读次数:
0
处理了一年的边界问题 #include <bits/stdc++.h> using namespace std; const int N = 2e5 + 10; #define fi first #define se second #define sz(v) ((int)(v).size()) #d ...
分类:
其他好文 时间:
2021-03-15 11:18:36
阅读次数:
0
IDEA无法创建二级包的问题 点击齿轮 取消勾选 Compact Middle Package ...
分类:
其他好文 时间:
2021-03-15 10:58:13
阅读次数:
0
http://www.pipioj.online/problem.php?id=1026 1 #define IO std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); 2 #define bug(x) cout<<#x<<" is "<<x<<e ...
分类:
其他好文 时间:
2021-03-10 13:26:07
阅读次数:
0
-- 查看表结构desc 表名; -- 查看表中字段的结构信息select table_name,column_name,column_comment from information_schema.columns where table_schema ='表所在的库' and table_name ...
分类:
数据库 时间:
2021-03-10 12:59:11
阅读次数:
0