一、题目: 二、思路: 这道题的思路其实也很简单,但就是想不到。 我们考虑题目中的限制“编号为 \(x,y\) 的两个顶点有且只有一个同时在顶点 \(p\) 的子树与顶点 \(q\) 的子树里”,看到这样的限制就应该想到 DFS 序或者其他能将子树包含关系转化到序列包含问题的做法。 对于这道题,我们 ...
分类:
其他好文 时间:
2021-05-24 05:40:25
阅读次数:
0
<?php /* * redis 分页数据类库 */ class redisPage{ protected $_redis; protected $_redis_ip = '127.0.0.1'; //ip protected $_redis_port = 6379; //端口 protected ...
分类:
Web程序 时间:
2021-05-24 04:07:35
阅读次数:
0
#include<vector> #include<queue> #include<string> #include<binaryNode.hpp> #include<iostream> #include<sstream> template<typename T> class traverse { ...
分类:
其他好文 时间:
2021-05-04 15:34:11
阅读次数:
0
命令行 安装软件包 [root@localhost ~]# yum install cobbler cobbler-web dhcp pykickstart -y 开机启动 [root@localhost ~]# systemctl enable --now cobblerd httpd tftp ...
分类:
其他好文 时间:
2021-05-03 12:35:24
阅读次数:
0
参考:https://blog.csdn.net/Hk_john/article/details/72463318 以下是内容: 最近经常用到vector容器,发现它的clear()函数有点意思,经过验证之后进行一下总结。 clear()函数的调用方式是,vector temp(50);//定义了5 ...
分类:
其他好文 时间:
2021-04-29 12:05:53
阅读次数:
0
1.clear.txt->clear.bat @echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp del /f /s /q %systemdrive ...
1.盘符切换 盘符 + 英文冒号 D:C:\Users\zff>D: 2.查看当前目录下的所有 文件夹 dir命令 比如 D:\>dir 3.切换目录 cd (change directory) 比如 D:\>cd /d c: 可以在D盘直接切换到C盘 cd .. 表示返回上一级 4.清理屏幕 D: ...
分类:
其他好文 时间:
2021-04-29 11:47:14
阅读次数:
0
一些简单的算法与数据结构 稀疏数组 int chessArr1[][] = new int[11][11];//11*11的数组 int sum = 0; chessArr1[1][2] = 1;//设置两个值 chessArr1[2][3] = 2; //打印原数组 for(int[] row : ...
分类:
编程语言 时间:
2021-04-28 11:46:26
阅读次数:
0
为了存取特定的数组元素,可以在写数组名的同时在后边加上一个用方括号围绕的整数值(称这是对数组取下标)或进行索引。数组元素始终从0开始,所以长度为n的数组元素的索引是从0到n-1.例如,如果a是含有10个元素的数组,那么这些元素可以如下所示一次标记为a[0],a[1]..a[9]; 形如a[i]的表达 ...
分类:
编程语言 时间:
2021-04-27 14:21:54
阅读次数:
0
%% max z=2x1+3x2-5x3 %% s.t. x1+x2+x3=7 %% x1+3x2+x3<=12 %% x1,x2,x3>=0 clear all; close all; f=[-2;-3;5]; a=[-2,5,-1;1,3,1];b=[10;12]; aeq=[1,1,1];be ...
分类:
其他好文 时间:
2021-04-24 11:47:33
阅读次数:
0