算法题常见的BUG错误(总结)

Posted draymonder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法题常见的BUG错误(总结)相关的知识,希望对你有一定的参考价值。

1. 快排的partition

if(l >= r)
    return ;
int i = l, j = r;
int tmp = v[i];
while(i < j) 
    while(i < j && v[j] >= tmp) j--;
    while(i < j && v[i] <= tmp) i++;
    if(i < j) swap(v[i], v[j]);

swap(v[l], v[i]);

2. pq的排序规则

pop正好是和比较是反着的

struct cmp
    bool operator ()(const pair<int,pair<int,int>> &a, const pair<int,pair<int,int>> &b) 
        return a.first > b.first;
    
;

3. kmp的next数组

next[0] = -1;
for(int i=1; i<len; i++) 
    int j = next[i-1];
    while(j != -1 && s[j+1] != s[i])
        j = next[j];
    if(s[j+1] == s[i])
        next[i] = j+1;
    else 
        next[i] = -1;

以上是关于算法题常见的BUG错误(总结)的主要内容,如果未能解决你的问题,请参考以下文章

44期盘点那些必问的数据结构算法题之二分查找算法

动力节点小米商城项目常见bug总结

bug--常见的bug总结:

常见数据结构与算法整理总结(下)

Java面试题常见算法总结

数据结构与算法(下)