Why does this simple custom-comparator for vector-of-vector produces a crash?

49 Views Asked by At

The following code crashes when I call std::sort on the bks (vector of vectors) of form [20000][3]. It seems the comparator compBks() is getting called on v1 of size 0 and v2 of size 3 after 20000 calls to compBks have been made, which could cause the crash.

But why is compBks being called with invalid v1?

Any reason?

class Solution {
public:
    struct compBks {
        bool operator() (vector<int> v1, vector<int> v2) {
            cout << v1.size() << " " << v2.size() << endl;
            if (v1[0] < v2[0]) return true;
            else if (v1[0] == v2[0]) 
                return v1[1] <= v2[1];
            return false;
        }
    };

    vector<int> corpFlightBookings(vector<vector<int>>& bks, int n) {
        vector<int> res(n, 0);
        sort(bks.begin(), bks.end(), compBks());
        return res;
    }
};

int main() {
   Solution s;
   vector<vector<int>> bks(20000, {1, 20000, 10000});
   s.corpFlightBookings(bks, 20000);
}

Crash is: runtime error: reference binding to null pointer of type 'value_type' (stl_vector.h)

Just before crash, compBks() prints v1.size as 0 and v2.size as 3.

Why would it v1 ever get size of 0 if std::sort is being called correctly for bks?

0

There are 0 best solutions below