Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ordered_set: clear() causes erros #5

Closed
Mark-Joy opened this issue Jun 29, 2017 · 2 comments
Closed

ordered_set: clear() causes erros #5

Mark-Joy opened this issue Jun 29, 2017 · 2 comments

Comments

@Mark-Joy
Copy link

Mark-Joy commented Jun 29, 2017

After clear() is called, nothing behave as it should be. My program even crashes sometimes.
Not sure if it also happens to ordered_map

tsl::ordered_set<int> test2;

        test2.insert(6);
        test2.clear();
        test2.insert(104);
        test2.insert(1099);
        test2.insert(302);
        test2.insert(208);
        test2.insert(301);

        test2.erase(301);

        std::cout << "ordered_set: ";
        for (auto & i : test2)
        {
            std::cout << i << " ";
        }
        std::cout <<"\n\n";

        test2.erase(302);
        test2.insert(302);

        std::cout << "ordered_set: ";
        for (auto & i : test2)
        {
            std::cout << i << " ";
        }
        std::cout <<"\n\n";

        test2.erase(302);
        test2.insert(302);

        std::cout << "ordered_set: ";
        for (auto & i : test2)
        {
            std::cout << i << " ";
        }
        std::cout <<"\n\n";

output:
ordered_set: 104 1099 302 208
ordered_set: 104 1099 302 208
ordered_set: 104 1099 302 208
ordered_set: 104 1099 302 208 301

should be:
ordered_set: 104 1099 302 208
ordered_set: 104 1099 208 302
ordered_set: 104 1099 208 302
ordered_set: 104 1099 208 301

@Mark-Joy Mark-Joy changed the title ordered_set: clear() cause erros ordered_set: clear() causes erros Jun 29, 2017
Tessil added a commit that referenced this issue Jun 29, 2017
…Clear each bucket individually. bucket_count() should be the same before and after calling clear().
@Tessil
Copy link
Owner

Tessil commented Jun 29, 2017

Thank you. There was effectively a bug in clear(), made the correction.

I get the following results now (some code seems to be missing in your example, there is only three printed lines):

ordered_set: 104 1099 302 208 

ordered_set: 104 1099 208 302 

ordered_set: 104 1099 208 302

@Mark-Joy
Copy link
Author

I download latest commit and it's working fine now. Thank you for your good work and fast response!

@Tessil Tessil closed this as completed Jun 29, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants