码迷,mamicode.com
首页 >  
搜索关键字:there are two rows o    ( 14173个结果
【leetcode】1433. Check If a String Can Break Another String
题目如下: Given two strings: s1 and s2 with the same size, check if some permutation of string s1 can break some permutation of string s2 or vice-versa (i ...
分类:其他好文   时间:2020-06-03 23:41:15    阅读次数:108
1029. Two City Scheduling
There are 2N people a company is planning to interview. The cost of flying the i-th person to city A is costs[i][0], and the cost of flying the i-th p ...
分类:其他好文   时间:2020-06-03 23:34:27    阅读次数:72
【leetcode】1432. Max Difference You Can Get From Changing an Integer
题目如下: You are given an integer num. You will apply the following steps exactly two times: Pick a digit x (0 <= x <= 9). Pick another digit y (0 <= y < ...
分类:其他好文   时间:2020-06-03 23:33:43    阅读次数:70
关于mysql的explain慢查询详解
详细链接:https://www.cnblogs.com/tufujie/p/9413852.html expain出来的信息有10列,分别是id、select_type、table、type、possible_keys、key、key_len、ref、rows、Extra 概要描述:id:选择标识 ...
分类:数据库   时间:2020-06-02 19:19:15    阅读次数:74
EIgen基本运算学习
本章学习链接: 使用C++ Eigen库求解线性方程组Ax=b 向量 向量平方和 矩阵 动态矩阵 在使用动态矩阵的时候发现一个问题,在无法知道大小的时候直接初始化 int rows,cols;//从其他地方获取的尺寸行列数 Eigen::MatrixXf tmp_mat; tmp_mat=Eigen ...
分类:其他好文   时间:2020-06-01 20:39:04    阅读次数:167
【leetcode】1422. Maximum Score After Splitting a String
题目如下: Given a string s of zeros and ones, return the maximum score after splitting the string into two non-empty substrings (i.e. left substring and r ...
分类:其他好文   时间:2020-06-01 18:02:06    阅读次数:65
Oracle优化器模式不同导致索引失效
最近测试过程中碰到一个诡异的问题:增加相同的索引,执行相同的查询语句,在A数据库查询耗时缩短,可在B数据库查询耗时几乎不变。这让我一度怀疑B数据库有毒,然而重启大法也没能解决。最后确认问题是由于oracle优化器模式不同,导致不规范索引造成的索引失效。 下面详细看看这个例子。 增加索引语句如下: C ...
分类:数据库   时间:2020-06-01 13:30:46    阅读次数:87
1. 两数之和
题目描述 leetcode - 1:https://leetcode-cn.com/problems/two-sum/ 解题关键 hashmap的使用 碎碎念 题目比较简单,暴力过很容易,不过借助hash可以降低时间复杂度,但是增加了空间的消耗。学习了hashmap的使用 key:value 定义 ...
分类:其他好文   时间:2020-06-01 01:06:46    阅读次数:77
LeetCode 29. 两数相除 Divide Two Integers
使用了long。没有解决int的溢出问题。 class Solution { public: int divide(int dividend, int divisor) { //if (dividend == 0) return 0; //if (divisor == 1) return divid ...
分类:其他好文   时间:2020-05-31 18:17:56    阅读次数:101
【POJ3133】Manhattan Wiring (插头dp)
Manhattan Wiring 题意: There is a rectangular area containing n × m cells. Two cells are marked with “2”, and another two with “3”. Some cells are occup ...
分类:其他好文   时间:2020-05-31 16:26:04    阅读次数:66
14173条   上一页 1 ... 28 29 30 31 32 ... 1418 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!