// 写vueJS逻辑 // @ts-ignore const app = new Vue({ el: '#app', data() { return { books: [ { id: 1, name: '《周文强牛逼1》', date: '2021-1-1', price: 88.00, coun ...
分类:
编程语言 时间:
2021-02-19 13:40:27
阅读次数:
0
###1、安装docker yum安装 # 安装依赖包 yum install -y yum-utils # 添加docker源 yum-config-manager --add-repo \ http://mirrors.aliyun.com/docker-ce/linux/centos/dock ...
分类:
其他好文 时间:
2021-02-19 13:39:03
阅读次数:
0
容斥原理 \(\because C_n^0 + C_n^1 + C_n^2 + \ldots + C_n^n = 2^n\) \(\therefore C_n^1 + C_n^2 + \ldots + C_n^n = 2^n - 1\) 实现的时候,奇数加,偶数减。 题意:给定一个整数 n 和 m ...
分类:
其他好文 时间:
2021-02-19 13:23:10
阅读次数:
0
import pandas as pd import numpy as np if __name__ == '__main__': pd.options.display.max_columns = 999 orders = pd.read_excel("C:/Users/18124/Desktop/ ...
分类:
其他好文 时间:
2021-02-19 13:19:32
阅读次数:
0
水题。 int cnt[105]; int n,m; int main() { cin>>n; for(int i=0;i<n;i++) { int x; cin>>x; cnt[x]++; } cin>>m; for(int i=0;i<m;i++) { int x; cin>>x; if(i) ...
分类:
其他好文 时间:
2021-02-19 13:14:05
阅读次数:
0
操作数据库 结构化查询语句分类 名称 解释 命令 DDL(数据库定义语言) 定义和管理数据对象,例如数据库和数据表 create、drop、alter DML(数据操作语言) 用于操作数据库对象中所包含的数据 insert、update、delete DQL(数据查询语言) 用于查询数据库数据 se ...
分类:
数据库 时间:
2021-02-19 13:06:11
阅读次数:
0
兄弟题1039 Course List for Student (25 分),一样很水。 vector<string> course[2510]; int n,m; int main() { cin>>n>>m; for(int i=0;i<n;i++) { string name; name.re ...
分类:
其他好文 时间:
2021-02-19 12:59:54
阅读次数:
0
字符串(string) 作为 go 语言的基本数据类型,在开发中必不可少,我们务必深入学习一下,做到一清二楚。 ...
分类:
其他好文 时间:
2021-02-18 13:44:56
阅读次数:
0
在Linux环境下,无论是Centos、Ubuntu还是Mac OS 中安装一般都是两种类型安装:在线安装和.tgz压缩包安装两种。对于Mac OS来说brew安装要方便和简单很多。所以不多做解释了。这里讲的是用.tgz方式安装。 1、下载。先到MongoDB的官网找到合适的版本的文件,然后下载。h ...
分类:
数据库 时间:
2021-02-18 13:40:28
阅读次数:
0
Rust模块化 模块化有助于代码的管理和层次逻辑的清晰 Rust模块化有多种方式: 1.嵌套模块 嵌套模块就是直接在要使用模块的文件中声明模块 mod food{//声明模块 pub struct Cake; pub struct Smoothoe; pub struct Pizza; } use ...
分类:
其他好文 时间:
2021-02-18 13:35:09
阅读次数:
0