码迷,mamicode.com
首页 >  
搜索关键字:HERE    ( 6715个结果
Linux下Mysql修改密码 重启mysql服务
如果忘记mysql的密码 修改配置文件跳过密码直接登录 在[mysqld]下面添加 vim /etc/my.cnf skip-grant-tablses 重启mysql服务 service mysqld restart /etc/rc.d/init.d/mysqld restart 登录mysql ...
分类:数据库   时间:2021-03-02 12:39:27    阅读次数:0
[CodeForces1492C] Maximum Width
description: There are two strings \(a\), \(b\) with the length \(n\), and \(m\). Find the Array <\(p_1, p_2, ..., p_m>\), such that \(a_{p_i}= b_i\), ...
分类:其他好文   时间:2021-03-01 13:26:32    阅读次数:0
1121 Damn Single (25 分)
"Damn Single (单身狗)" is the Chinese nickname for someone who is being single. You are supposed to find those who are alone in a big party, so they can ...
分类:其他好文   时间:2021-03-01 13:14:50    阅读次数:0
order by 是怎么工作的
二、mysql会通过遍历索引将满足条件的数据读取到sort_buffer,并且按照排序字段进行快速排序 1、如果查询的字段不包含在辅助索引中,需要按照辅助索引记录的主键返回聚集索引取出所需字段 2、该方式会造成随机IO,在MySQL5.6提供了MRR的机制,会将辅助索引匹配记录的主键取出来在内存中进 ...
分类:其他好文   时间:2021-02-23 14:14:57    阅读次数:0
PageHelper直接对List进行分页的方法
转自:https://blog.csdn.net/zser567/article/details/105388029 问题背景:PageHelper的分页只有在 PageHelper.startPage(pageNum,pageSize); 之后的数据库查询语句才起作用,原因是PageHelper的 ...
分类:其他好文   时间:2021-02-22 11:54:02    阅读次数:0
React js 参数传参2(转发)
原文:Passing State & Calling Functions Between Parent & Children in ReactJS Passing state between components is a common use case. Generally, we use a s ...
分类:Web程序   时间:2021-02-20 12:14:04    阅读次数:0
POJ3784 Running Median 题解
题目描述 For this problem, you will write a program that reads in a sequence of 32-bit signed integers. After each odd-indexed value is read, output the m ...
分类:其他好文   时间:2021-02-18 13:06:04    阅读次数:0
PAT A1119 Pre- and Post-order Traversals (30 分)
Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can be determined by a given pair of postorder and ino ...
分类:其他好文   时间:2021-02-16 12:28:45    阅读次数:0
LeetCode - Merge Intervals
Given an array of intervals where intervals[i] = [starti, endi], merge all overlapping intervals, and return an array of the non-overlapping intervals ...
分类:其他好文   时间:2021-02-16 12:04:54    阅读次数:0
C# list sort底层原理
如果提供比较,则使用委托表示的方法对列表中的元素进行排序。如果comparison为null,则抛出ArgumentNullException。 此方法使用数组.排序,其应用自省排序,如下所示: 如果分区大小小于或等于16个元素,则使用插入排序算法 如果分区数超过2logn,其中n是输入数组的范围, ...
分类:Windows程序   时间:2021-02-08 12:14:42    阅读次数:0
6715条   上一页 1 ... 10 11 12 13 14 ... 672 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!