0

你好这是代码:

template <class T> class FibonacciHeap{
public:
    class Entry{
        public:
            // Returns the element represented by this heap entry.
            T getValue(){
                return mElem;
            }

            // Sets the element associated with this heap entry.
            void setValue(T value){
                    mElem = value;
            }

            // Returns the priority of this element.
            double getPriority(){
                return mPriority;
            }

        private:
            int mDegree = 0;                // Number of children
            bool mIsMarked = false;         // Whether the node is marked

            Entry mNext;                    // Next element in the list
            Entry mPrev;                    // Previous element in the list

            Entry mChild;                   // Child node, if any
            Entry mParent;                  // Parent node, if any
            T mElem;                        // Element being stored here
            double mPriority;               // Its priority

            //Constructs a new Entry that holds the given element with the indicated priority.
            Entry(T elem, double priority){
                mNext = mPrev = this;
                mElem = elem;
                mPriority = priority;
            }
    };
    ...

在“条目”类中,我想递归调用条目,所以我可以使用:

    First_entry.mPrev.mNext

我知道这在 Java 中有效,但是当我在 c++ 中编译它时,我得到:

    error: 'FibonacciHeap<T>::Entry::mNext' has incomplete type

有谁知道如何解决这个问题或解决这个问题?

4

1 回答 1

3

根据此处的变量名称和初始化程序,我假设您正在将我的Java 斐波那契堆调整为 C++。:-) 如果是这样,祝你好运!

在 Java 中,如果你有一个 type 的变量Entry,它就像一个 C++ 类型Entry*的变量,因为它是一个指向另一个Entry对象的指针,而不是一个诚实的Entry对象。因此,在Entry类的定义中,您应该调整字段,使它们属于 typeEntry*而不是Entry. 同样,.您需要使用->运算符,而不是使用运算符来选择字段。所以

First_entry.mPrev.mNext

将被改写为

First_entry->mPrev->mNext

不要忘记显式初始化指向的Entry指针nullptr- Java 会自动执行此操作,这就是 Java 版本中没有初始化器的原因。但是,C++ 给未初始化的指针提供了垃圾值,因此请确保提供mChild一个mParent明确的nullptr值。

于 2017-11-07T01:00:03.883 回答