大水题。。。 const int N=1e5+10; struct Node { string id; string name; int grade; }a[N]; int n,m; bool cmp1(Node &a,Node &b) { return a.id < b.id; } bool cm ...
分类:
其他好文 时间:
2021-02-17 15:07:19
阅读次数:
0
不会 webpack 还想学 vue 工程化开发 的福音 熟悉jQuery开发的,学习vue的简单使用是没用啥问题的,但是学习vue的工程化开发方式,往往会遇到各种问题,比如: webpack、node、npm、cnpm、yarn、脚手架、开发环境、测试环境、生产环境、各种安装、各种创建。 好在 v ...
分类:
Web程序 时间:
2021-02-17 15:03:59
阅读次数:
0
一.HTTP METHOD GET方法请求一个指定资源的表示形式. 使用GET的请求应该只被用于获取数据. HEAD方法请求一个与GET请求的响应相同的响应,但没有响应体. POST方法用于将实体提交到指定的资源,通常导致在服务器上的状态变化或副作用. PUT方法用请求有效载荷替换目标资源的所有当前 ...
分类:
Web程序 时间:
2021-02-17 14:30:41
阅读次数:
0
一、docker部署redis集群 1、节点规划 (3 master 3 node) ip port cpu/mem data-volume 192.168.40.132 7000 7003 4C & 8G /var/lib/redis/7000 /var/lib/redis/7003 192.16 ...
分类:
其他好文 时间:
2021-02-17 14:10:45
阅读次数:
0
1 命令: https://www.cnblogs.com/mmit/p/12639011.html npm i cnpm -g --registry=https://registry.npm.taobao.org cnpm install -g create-react-app create-re ...
分类:
其他好文 时间:
2021-02-17 14:10:02
阅读次数:
0
不开long long见祖宗。 struct Node { LL galleon,sickle,knut; }a,b; int main() { scanf("%d.%d.%d",&a.galleon,&a.sickle,&a.knut); scanf("%d.%d.%d",&b.galleon,& ...
分类:
其他好文 时间:
2021-02-16 12:33:27
阅读次数:
0
1 #include <iostream> 2 3 using namespace std; 4 5 template <typename K, typename V> 6 class BST 7 { 8 private: 9 struct node // 类内定义类、结构体 10 { 11 K k ...
分类:
其他好文 时间:
2021-02-16 12:09:37
阅读次数:
0
JavaScript-DOM和BOM 1. JavaScript组成 JavaScript和ECMAScript通常都被人们用来表达相同的含义,但JavaScript的含义却比ECMA-262中规定的要多得多。 组成部分: 1、核心( ECMAScript):JavaScript语言的核心,包含基本 ...
分类:
编程语言 时间:
2021-02-16 11:48:43
阅读次数:
0
Copy List with Random Pointer (M) 题目 A linked list is given such that each node contains an additional random pointer which could point to any node in ...
分类:
其他好文 时间:
2021-02-15 11:52:08
阅读次数:
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