#include <stdio.h> typedef struct Node { int data; struct Node* lchild; struct Node* rchild; }Node; typedef Node* BinTree; int array[] = {1,2,3,4,5,6, ...
分类:
编程语言 时间:
2020-11-27 10:52:16
阅读次数:
17
环境: 6个es节点 冷热配置 es1 master节点 # elasticsearch.yml node.name: "es1" cluster.name: "docker-cluster" network.host: 0.0.0.0 node.master: true node.data: fa ...
分类:
其他好文 时间:
2020-11-26 15:08:48
阅读次数:
7
private void treeListDs_FocusedNodeChanged(object sender, FocusedNodeChangedEventArgs e) { treeListDsNode = e.Node; string v = e.Node.GetValue("GROUP_ ...
分类:
其他好文 时间:
2020-11-26 14:52:49
阅读次数:
5
引子 再次碰到调试 npm 本地包的情况,一时想不起来,看了下文档,实际操作了一下,发现了一些文档上没明写的东西。 Origin My GitHub 介绍 根据文档介绍,包的链接分为两步。 第一步 在一个包文件夹内执行 npm link 将在全局文件 /lib/node_modules/ 内,创建一 ...
分类:
其他好文 时间:
2020-11-26 14:50:48
阅读次数:
6
/** * Definition for a binary tree node. * struct TreeNode { * int val; * struct TreeNode *left; * struct TreeNode *right; * }; */ /** * Return an arr ...
分类:
其他好文 时间:
2020-11-26 14:41:52
阅读次数:
8
from random import * #定义一个Info类,功能是打印介绍性信息,并且获得用户输入的两队伍能力值,模拟场次 class Info: def __init__(self): print('这个程序是模拟两支队伍A和B的排球比赛') print('程序运行需要A和B的能力值(以0到1 ...
分类:
其他好文 时间:
2020-11-26 14:34:57
阅读次数:
5
node类 class Node{ private int v; private Object k; private Node next; private Node pre; public Node(Object key,int value) { this.v = value; this.k = k ...
分类:
其他好文 时间:
2020-11-25 13:01:35
阅读次数:
15
创建: 2020/11/21 完成: 2020/11/21, 注: 省略ArrayList java.util.* TODO: 补充ArrayList https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html 简介 动态数组 ...
分类:
编程语言 时间:
2020-11-25 12:45:46
阅读次数:
9
#include<bits/stdc++.h> #define ll long long #define N 100015 #define rep(i,a,n) for (int i=a;i<=n;i++) #define per(i,a,n) for (int i=n;i>=a;i--) #def ...
分类:
其他好文 时间:
2020-11-25 12:45:31
阅读次数:
4
include文件包含解析 前言 题目环境 buuctf中warmup 知识点include特性 思路 之前写过这题 ...
分类:
其他好文 时间:
2020-11-25 12:44:25
阅读次数:
6