SQL实现LeetCode(180.连续的数字)

[leetcode] 180.consecutive numbers 连续的数字

write a sql query to find all numbers that appear at least three times consecutively.

+—-+—–+
| id | num |
+—-+—–+
| 1  |  1  |
| 2  |  1  |
| 3  |  1  |
| 4  |  2  |
| 5  |  1  |
| 6  |  2  |
| 7  |  2  |
+—-+—–+

for example, given the above logs table, 1 is the only number that appears consecutively for at least three times.

这道题给了我们一个logs表,让我们找num列中连续出现相同数字三次的数字,那么由于需要找三次相同数字,所以我们需要建立三个表的实例,我们可以用l1分别和l2, l3内交,l1和l2的id下一个位置比,l1和l3的下两个位置比,然后将num都相同的数字返回即可:

解法一:

select distinct l1.num from logs l1
join logs l2 on l1.id = l2.id - 1
join logs l3 on l1.id = l3.id - 2
where l1.num = l2.num and l2.num = l3.num;

下面这种方法没用用到join,而是直接在三个表的实例中查找,然后把四个条件限定上,就可以返回正确结果了:

解法二:

select distinct l1.num from logs l1, logs l2, logs l3
where l1.id = l2.id - 1 and l2.id = l3.id - 1
and l1.num = l2.num and l2.num = l3.num;

再来看一种画风截然不同的方法,用到了变量count和pre,分别初始化为0和-1,然后需要注意的是用到了if语句,mysql里的if语句和我们所熟知的其他语言的if不太一样,相当于我们所熟悉的三元操作符a?b:c,若a真返回b,否则返回c。那么我们先来看对于num列的第一个数字1,pre由于初始化是-1,和当前num不同,所以此时count赋1,此时给pre赋为1,然后num列的第二个1进来,此时的pre和num相同了,count自增1,到num列的第三个1进来,count增加到了3,此时满足了where条件,t.n >= 3,所以1就被select出来了,以此类推遍历完整个num就可以得到最终结果:

解法三:

select distinct num from (
select num, @count := if(@pre = num, @count + 1, 1) as n, @pre := num
from logs, (select @count := 0, @pre := -1) as init
) as t where t.n >= 3;

参考资料:

到此这篇关于sql实现leetcode(180.连续的数字)的文章就介绍到这了,更多相关sql实现连续的数字内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐