当前位置:首页 > IT技术 > 其他 > 列表
其他 共有 1340419 个文章

Jmeter的安装与使用

    一、jmeter的安装 1、下载安装jmeter  2、找到你下载jmeter的安装包并解压         3、打开解压的jmeter文件夹找到bin   4、找到jmeter.bat,如果找不到jmeter.bat就是文件名称后缀隐藏了,找到查看-显示-文件扩展名       5、双击...[继续阅读]

其他

题解洛谷 P7897【[Ynoi2006] spxmcq】

    本文中用 (T_u) 表示以 (u) 为根的子树。首先考虑暴力 DP,设 (dp_u) 为当前询问的 (x) 下,节点 (u) 的答案,那么根据题意列出转移方程:[dp_u=(a_u+x)+sumlimits_{vextrm{ is son of }u}max{dp_v,0}]其中那个 (max{dp_v,0}) 就是要不要连到 (v) 的子树里面...[继续阅读]

其他

二分搜索

    二分搜索数组必须是排序好的java 实现public class App { public static void main(String[] args) throws Exception { // 目标数组 int[] arr1 = new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; // 目标元素 int dstNum = 10; // 左索引 int leftIndex...[继续阅读]

其他

CF1055G

    首先考虑解决一个子问题:如何判断答案是否是 (0)。假设 Bob 的多边形是 (P),水母没有活动区域,那么显然只有当水母在 (P) 中时 Bob 才会被蜇。换而言之,假设会使 Bob 被蜇的区域为禁止区域,那么这个禁止区域就是每只水母周围...[继续阅读]

其他

【Redis】事件驱动框架源码分析

    aeEventLoop初始化在server.c文件的initServer函数中,对aeEventLoop进行了初始化:调用aeCreateEventLoop函数创建aeEventLoop结构体,对aeEventLoop结构体中的变量进行了初始化,之后调用了aeApiCreate函数创建epoll实例调用aeCreateFileEvent函数向内核注册...[继续阅读]

其他

chain

    A chain is a serial assembly of connected pieces, called links, typically made of metal, with an overall character similar to that of a rope in that it is flexible and curved in compression but linear, rigid, and load-bearing in tension. A chain may consist of two or more links. Chains can be classif...[继续阅读]

其他

volatile保障可见性

    使用volatile 若果 cpu1 修改的x 和cpu2 修改的y 中 xy 位于同一缓存行那么 操作x的时候会更新y 操作y的时候会更新x  ...[继续阅读]

其他

tensorflow读书笔记

    #定义一个2行3列全为0的矩阵tensor1 = tf.zeros([2,3])print(tensor1)"""运行结果:tf.Tensor([[0. 0. 0.][0. 0. 0.]], shape=(2, 3), dtype=float32)"""#定义一个2行2列全为1的矩阵ones_tsr = tf.ones([2, 2])print(ones_tsr)"""运行结果: tf.Tensor( [[1. 1.] [1. 1.]], shape=(2,...[继续阅读]

其他

实验三

    #include<stdio.h>#include<stdlib.h>#include<time.h>#include<unistd.h>#define N 80void printText(int line,int col, char text[]);void printSpaces(int n);void printBlanklines(int n);int main(){int line, col, i;char text[N]= "hi,May~";srand(time(0));for(i=1;i<=10;++i){line = ra...[继续阅读]

其他

yum管理工具(一)

    yum管理工具[TOC]yum概述什么是yumyum也是一直rpm包管理工具,相比于rpm命令,优势是可以自动解决依赖关系自动解决依赖关系的前提条件,你的yum源中要有这些依赖包举例​​nginx​​​安装需要​​pcre-devel​​​ 、​​ openssl-deve...[继续阅读]

其他