※ 引述《saladim (殺拉頂)》之銘言:
http://ideone.com/ET2sJs
以上是我的測試碼
好吧 這個結果更奇怪 連自己寫的comparator都失敗了
請各位先進幫忙指點一下 我本身主要是用clang++寫這個功能
這個網站應該是用gcc.........
謝謝
P.S. 請原諒用摘錄的方式 因為我是用virtualbox跑freebsd
現在才發現 要把檔案弄出virtualBox有點難 這種設定問題搞了我好久 @_@
: 開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
: FreeBSD 10x
: Clang++ 3.5
: 參數 -Wall (試過 -g, -O1 -O2, 基本上問題都存在或甚至更離譜)
: 額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
: 使用 stl_tree.h裡面的 red black tree
: 問題(Question):
: 最近做了一些實驗 主要是想看看能不能使用stl_tree.h裡面的那個rbtree.
: 不過遇到了一個很奇怪的問題
: 主要是當我使用std::less<int> 當作key的比較functor時, 最後結果用inorder
: traversal 或是用rbtree的begin() and end()去循序印出的結果是錯誤的,
: 用gdb進去看發現傳到 std::less<int>::operator()(const int&, const int&)
: 的值並非正確的值(-1077945256).......
: = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
: 節錄程式碼: 我是直接繼承 _Rb_Tree來使用它內部的function, 方便存取內部資料
: MyClass
: {
: public:
: struct Key
: {
: int operator()(const MyClass& class) { return class.getHead();}
: };
: public:
: int getHead() { return head;}
: private:
: .......
: int head;
: .......
: };
: template<typename K,typename V, typename KofV, typenam Comp,
: typename Alloc=std::allocator<V> >
: MyTree:public std::_Rb_tree<K,V,KofV,Comp,Alloc>
: {
: public:
: std::pair<std::_Rb_tree<K,V,KofV,Comp,Alloc>::iterator,bool >
: insert_unique(const value_type& value){this->_M_insert_unique(value);};
: }
: typedef MyTree< int, MyClass, MyClass::Key, std::less<int> > Tree;
: 使用插入:
: Tree tree;
: tree.insert(MyClass(....));
: = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
: 之後我使用inorder traversal 跟 tree.begin() to tree.end() iteration,印出的
: 順序是錯誤的. 可是!!!!!!!! 如果我把比較函數換成另外一個:
: struct MyComp
: {
: bool operator()(int a, int b) { return a < b; }
: }
: 順序就對了, 注意, 紅色標示處一定要是 int, 若是換成const int& 一樣出錯!!!
: 另外 std::less<int> 跟 MyComp單獨使用不管參數型態為何都是正常的......
: 請問有誰遇過這種狀況嗎? 見鬼的奇怪....誰能幫忙試一下g++版本
: 最近FreeBSD gcc port都編譯失敗.....壞一陣子了......