上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 34 下一页
摘要: MySQL使用Limit关键字限制查询结果的数量 1、Limit关键字的使用 查询数据时,可能会查询出很多的记录。而用户需要的记录可能只是很少的一部分。这样就需要来限制查询结果的数量。Limit是MySQL中的一个特殊关键字。Limit子句可以对查询结果的记录条数进行限定,控制它输出的行数。 在My 阅读全文
posted @ 2021-05-27 13:58 小傻孩丶儿 阅读(2506) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; /** * @description: 62. 不同路径 * 一个机器人位于一个 m x n 网格的左上角 (起始点在下图中标记为 “Start” )。 * <p> * 机器人每次只能向下或者向右移动一步。机器人试图达到网格的右下角(在下图 阅读全文
posted @ 2021-05-27 10:42 小傻孩丶儿 阅读(74) 评论(0) 推荐(0) 编辑
摘要: useGeneratedKeys="true" keyProperty="id" 阅读全文
posted @ 2021-05-26 17:54 小傻孩丶儿 阅读(74) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; /** * @description: s * @author: licm * @create: 2021-05-26 09:48 **/ public class Lc70_爬楼梯 { /** * 1. 确定dp[i] 含义,代表每一个楼 阅读全文
posted @ 2021-05-26 10:28 小傻孩丶儿 阅读(42) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; /** * @description: 509. 斐波那契数 * 斐波那契数,通常用 F(n) 表示,形成的序列称为 斐波那契数列 。该数列由 0 和 1 开始,后面的每一项数字都是前面两项数字的和。也就是: * <p> * F(0) = 阅读全文
posted @ 2021-05-25 14:58 小傻孩丶儿 阅读(65) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; /** * @description: * * 860. 柠檬水找零 * 在柠檬水摊上,每一杯柠檬水的售价为 5 美元。 * * 顾客排队购买你的产品,(按账单 bills 支付的顺序)一次购买一杯。 * * 每位顾客只买一杯柠檬水,然后向 阅读全文
posted @ 2021-05-24 10:06 小傻孩丶儿 阅读(58) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; /** * @description: 45. 跳跃游戏 II * 给定一个非负整数数组,你最初位于数组的第一个位置。 * <p> * 数组中的每个元素代表你在该位置可以跳跃的最大长度。 * <p> * 你的目标是使用最少的跳跃次数到达数组 阅读全文
posted @ 2021-05-18 10:43 小傻孩丶儿 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 这个问题的解决方法就是在pom.xml文件中加上配置,让编译器把src/main/java目录下的xml文件一同编译到classes文件夹下。 <build> <resources> <resource> <directory>src/main/java</directory> <includes> 阅读全文
posted @ 2021-05-17 14:24 小傻孩丶儿 阅读(479) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; /** * @description: 55. 跳跃游戏 * 给定一个非负整数数组 nums ,你最初位于数组的 第一个下标 。 * <p> * 数组中的每个元素代表你在该位置可以跳跃的最大长度。 * <p> * 判断你是否能够到达最后一个 阅读全文
posted @ 2021-05-17 10:27 小傻孩丶儿 阅读(42) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; /** * @description: 122. 买卖股票的最佳时机 II * 给定一个数组 prices ,其中 prices[i] 是一支给定股票第 i 天的价格。 * <p> * 设计一个算法来计算你所能获取的最大利润。你可以尽可能地 阅读全文
posted @ 2021-05-13 15:36 小傻孩丶儿 阅读(46) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; /** * @description: 53. 最大子序和 --贪心解法 * 给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 * <p> * <p> * <p> * 示例 1: * < 阅读全文
posted @ 2021-05-13 09:53 小傻孩丶儿 阅读(71) 评论(0) 推荐(0) 编辑
摘要: MySQL安装之yum安装 在CentOS7中默认安装有MariaDB,这个是MySQL的分支,但为了需要,还是要在系统中安装MySQL,而且安装完成之后可以直接覆盖掉MariaDB。 1. 下载并安装MySQL官方的 Yum Repository [root@BrianZhu /]``# wget 阅读全文
posted @ 2021-05-12 16:37 小傻孩丶儿 阅读(43) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-05-12 14:53 小傻孩丶儿 阅读(0) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; import java.util.Arrays; /** * @description: 455. 分发饼干 * 假设你是一位很棒的家长,想要给你的孩子们一些小饼干。但是,每个孩子最多只能给一块饼干。 * <p> * 对每个孩子 i,都有一 阅读全文
posted @ 2021-05-12 10:55 小傻孩丶儿 阅读(57) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.Deque; import java.util.List; /** * @descripti 阅读全文
posted @ 2021-05-10 10:09 小傻孩丶儿 阅读(41) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; import java.util.ArrayDeque; import java.util.ArrayList; import java.util.Deque; import java.util.List; /** * @descripti 阅读全文
posted @ 2021-05-07 10:20 小傻孩丶儿 阅读(46) 评论(0) 推荐(0) 编辑
摘要: emqx参数调整以及遇到的问题 连接数超过1000出现服务挂掉: 解决办法最大句柄数问题: ulimit -u 100000 调整 emqx.conf 调整,其中涉及到zone.conf 和listener.conf node.data_dir = /opt/emqx/data node.async 阅读全文
posted @ 2021-04-29 17:32 小傻孩丶儿 阅读(2951) 评论(0) 推荐(0) 编辑
摘要: jmeter-emqtt测试环境构建 linux版构建,虽然不知道咋用 1. 安装jdk1.8 java -version 检查版本 2. 到官网 http://jmeter.apache.org/download_jmeter.cgi 中找到tgz的地址,通过wget下载,如果没有wget则用yu 阅读全文
posted @ 2021-04-28 10:47 小傻孩丶儿 阅读(127) 评论(0) 推荐(0) 编辑
摘要: package com.example.leetcode; import java.util.*; /** * @description: 40. 组合总和 II * 给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的 阅读全文
posted @ 2021-04-27 20:59 小傻孩丶儿 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 几个cpu more /proc/cpuinfo |grep "physical id"|uniq|wc -l 每个cpu是几核(假设cpu配置相同) more /proc/cpuinfo |grep "physical id"|grep "0"|wc -l 查看内存 free -g otps 地址 阅读全文
posted @ 2021-04-27 17:31 小傻孩丶儿 阅读(484) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 34 下一页