优先级队列实现的编译器错误

时间:2018-03-22 17:35:36

标签: c++ linked-list priority-queue

我正在进行一项使用#include库创建优先级队列而不是的任务。我写了一些函数,遇到了一个我无法弄清楚的问题。

// CSCI 2530
// Assignment: 6
// Author:     Zackary pulaski
// File:       pqueue.cpp
// Tab stops:  ***

// **Say what this program does here.  (replace this comment)**


#include <cstdio>
#include "stdafx.h"
#include "pqueue.h"

using namespace std;



//Structure PQCell holds an item (item), priority (priority) and
//a pointer to the next item in the priority queue.

struct PQCell 
{
    ItemType item;
    PriorityType priority;
    PQCell* node;

    PQCell() : item(0), priority(0), node()
    {
    }
};

//Checks the the first element of the linked list (q) for
//a NULL value. If the list is empty this first element will be NULL.

bool isEmpty(const PriorityQueue& q)
{
    if (q.next == NULL)
    {
        return false;
    }
    return true;
}
//-------------------------------------------------------------------


void insertCell(PQCell*& L, ItemType x, PriorityType p)
{
    PQCell cell;
    cell.item = x;
    cell.priority = p;
}



void insert(PriorityQueue& q, ItemType x, PriorityType p)
{
    insertCell(q, x, p);
}


int main()
{



    return 0;
}

在上面的代码中,它显示了程序的主文件,我写了一个&#34; insert&#34;和&#34; insertCell&#34;功能

insertCell函数应该在调用时将新单元格插入PriorityQueue。但是,当我尝试调用插入单元格时,它会给出错误(如上图所示)。

此外,这是我为此项目创建的头文件

// CSCI 2530
// Assignment: ***
// Author:     ***
// File:       ***
// Tab stops:  ***

// **Say what this program does here.  (replace this comment)**


#include <cstdio>
using namespace std;

struct PQCell;
//Type definitions

typedef const char* ItemType;
typedef double      PriorityType;

struct PriorityQueue
{

    PriorityQueue* next;

    PriorityQueue()
    {
        next = NULL;
    }
};
//Prototypes

bool isEmpty(const PriorityQueue& q);
void insert(PriorityQueue& q, ItemType x, PriorityType p);

此外,这里是分配说明的链接..... http://cs.ecu.edu/~karl/2530/spr18/Assn/Assn6/assn6.html

1 个答案:

答案 0 :(得分:0)

您正尝试将PriorityQueue的引用作为insertCell的第一个参数传递,此函数需要PQCell作为参数。

我说你的insertCell应该要求PriorityQueue,所以你可以推进它