]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
PR libstdc++/62045 fix O(N) insertion in pd_ds binary heap
authorJonathan Wakely <jwakely@redhat.com>
Wed, 17 May 2017 17:18:14 +0000 (18:18 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 17 May 2017 17:18:14 +0000 (18:18 +0100)
Backport from mainline
2017-03-15  Xi Ruoyao  <ryxi@stu.xidian.edu.cn>

PR libstdc++/62045
* include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
(is_heap): Remove.
(push_heap): Remove the wrong checking using is_heap.
(make_heap): Remove the assertion using is_heap.
* include/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
(modify): Ditto.
(resize_for_insert_if_needed): Add PB_DS_ASSERT_VALID after
calling make_heap.

Backport from mainline
2017-03-15  Jonathan Wakely  <jwakely@redhat.com>

PR libstdc++/62045
* testsuite/ext/pb_ds/regression/priority_queue_binary_heap-62045.cc:
New test.
* testsuite/ext/pb_ds/regression/priority_queues.cc: Fix copy&paste
error in comment.

From-SVN: r248164

libstdc++-v3/ChangeLog
libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
libstdc++-v3/testsuite/ext/pb_ds/regression/priority_queue_binary_heap-62045.cc [new file with mode: 0644]
libstdc++-v3/testsuite/ext/pb_ds/regression/priority_queues.cc

index 42588eb1488c4ea66909e04b1b6621c844190a09..f5af14f2ed345a394436ee0cea41aaa4cb190f70 100644 (file)
@@ -1,5 +1,27 @@
 2017-05-17  Jonathan Wakely  <jwakely@redhat.com>
 
+       Backport from mainline
+       2017-03-15  Xi Ruoyao  <ryxi@stu.xidian.edu.cn>
+
+       PR libstdc++/62045
+       * include/ext/pb_ds/detail/binary_heap_/binary_heap_.hpp
+       (is_heap): Remove.
+       (push_heap): Remove the wrong checking using is_heap.
+       (make_heap): Remove the assertion using is_heap.
+       * include/ext/pb_ds/detail/binary_heap_/insert_fn_imps.hpp
+       (modify): Ditto.
+       (resize_for_insert_if_needed): Add PB_DS_ASSERT_VALID after
+       calling make_heap.
+
+       Backport from mainline
+       2017-03-15  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/62045
+       * testsuite/ext/pb_ds/regression/priority_queue_binary_heap-62045.cc:
+       New test.
+       * testsuite/ext/pb_ds/regression/priority_queues.cc: Fix copy&paste
+       error in comment.
+
        Backport from mainline
        2015-11-17  Jonathan Wakely  <jwakely@redhat.com>
 
index 813fcdc1412e4e221b0691880f5211f5199d36a0..0003bfaed098887f2279571ace087f56db6fe544 100644 (file)
@@ -266,20 +266,14 @@ namespace __gnu_pbds
        const entry_cmp& m_cmp = static_cast<entry_cmp&>(*this);
        entry_pointer end = m_a_entries + m_size;
        std::make_heap(m_a_entries, end, m_cmp);
-       _GLIBCXX_DEBUG_ASSERT(is_heap());
       }
 
       void
       push_heap()
       {
-       if (!is_heap())
-         make_heap();
-       else
-         {
-           const entry_cmp& m_cmp = static_cast<entry_cmp&>(*this);
-           entry_pointer end = m_a_entries + m_size;
-           std::push_heap(m_a_entries, end, m_cmp);
-         }
+       const entry_cmp& m_cmp = static_cast<entry_cmp&>(*this);
+       entry_pointer end = m_a_entries + m_size;
+       std::push_heap(m_a_entries, end, m_cmp);
       }
 
       void
@@ -290,15 +284,6 @@ namespace __gnu_pbds
        std::pop_heap(m_a_entries, end, m_cmp);
       }
 
-      bool
-      is_heap()
-      {
-       const entry_cmp& m_cmp = static_cast<entry_cmp&>(*this);
-       entry_pointer end = m_a_entries + m_size;
-       bool p = std::__is_heap(m_a_entries, end, m_cmp);
-       return p;
-      }
-
 #ifdef _GLIBCXX_DEBUG
       void
       assert_valid(const char*, int) const;
index 97ccbedce8b64b53304f681aaf2f95552b74a802..b8cb6be9692b276b1727f4781dda3e4bb864f311 100644 (file)
@@ -103,7 +103,6 @@ modify(point_iterator it, const_reference r_new_val)
   swap_value_imp(it.m_p_e, r_new_val, s_no_throw_copies_ind);
   fix(it.m_p_e);
   PB_DS_ASSERT_VALID((*this))
-  _GLIBCXX_DEBUG_ASSERT(is_heap());
 }
 
 PB_DS_CLASS_T_DEC
diff --git a/libstdc++-v3/testsuite/ext/pb_ds/regression/priority_queue_binary_heap-62045.cc b/libstdc++-v3/testsuite/ext/pb_ds/regression/priority_queue_binary_heap-62045.cc
new file mode 100644 (file)
index 0000000..a61d36f
--- /dev/null
@@ -0,0 +1,51 @@
+// Copyright (C) 2017 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-do run }
+
+#include <ext/pb_ds/priority_queue.hpp>
+#include <testsuite_hooks.h>
+
+int count = 0;
+
+struct less
+{
+  bool operator()(int i, int j) const
+  {
+    ++count;
+    return i < j;
+  }
+};
+
+void
+test01()
+{
+  __gnu_pbds::priority_queue<int, less, __gnu_pbds::binary_heap_tag> c;
+  c.push(1);
+  c.push(2);
+  c.push(3);
+  c.push(4);
+  count = 0;
+  c.push(5);
+  VERIFY( count < c.size() );
+}
+
+int
+main()
+{
+  test01();
+}
index 366db1dd02bad0bf10129861f196068eb4493ba8..0cd4e7978152100759e59360148e02e74d41d4c7 100644 (file)
@@ -108,7 +108,7 @@ priority_queue_link_regression_test_0()
 
   {
     /*
-     *  Perform operations on a binomial-heap queue.
+     *  Perform operations on a binary-heap queue.
      */
     cout << "Binary heap" << endl;
     __gnu_pbds::priority_queue<int, less<int>, binary_heap_tag> c;