From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8559 invoked by alias); 14 Aug 2013 10:11:57 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 8535 invoked by uid 48); 14 Aug 2013 10:11:55 -0000 From: "temporal at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/58153] New: unordered_multimap::erase(iterator) is not constant-time when many entries have the same key Date: Wed, 14 Aug 2013 10:11:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 4.8.1 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: temporal at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2013-08/txt/msg00732.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=58153 Bug ID: 58153 Summary: unordered_multimap::erase(iterator) is not constant-time when many entries have the same key Product: gcc Version: 4.8.1 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: temporal at gmail dot com It appears that if an unordered_multimap has k entries with the same key, then erase(iter) for any of those entries is O(k) rather than constant-time. The problem is that _Hashtable::erase() searches through all nodes in the bucket looking for the one previous to the one being removed. This is reasonable for unordered_map, where buckets are expected to have no more than a couple entries. But it is surprising for unordered_multimap, whose whole purpose is to support multiple entries with the same key (and therefore the same bucket). I do not know exactly what the standard requires here, but all of the references I can find claim that erase(iter) should be average-time O(1), and none of them suggest that having a large number of entries with the same key should cause trouble. FWIW, it looks like libc++ has the same behavior. Maybe my expectations were wrong, and unordered_multimap was never meant to contain more than a couple entries per key?