簡體   English   中英

在C ++中將數據從文件讀取到隊列

[英]Reading data from file into queue in c++

我在弄清楚如何將輸入數據放入隊列時遇到了麻煩...我距離使它正常工作非常接近。

我知道我只是對事情如何運作感到困惑。 我使用了示例代碼和說明來提出一個似乎運行正常的工作程序(除了未將我的輸入文件數據實際放入隊列中)。 我繞過了我試圖為此做的功能。 除此之外,我還試圖編寫一個函數來從隊列中刪除一名員工(我認為這確實可行),但是我不確定我是否能夠正確完成工作……

我已經有十多年沒有參加編程課程了,我真的很想獲得任何幫助,以了解我在做什么,並將這些壞數據放入隊列中。

以下是我的主要驅動程序文件。 如果需要,我將提供我的頭文件代碼。 在此先感謝您提供的任何幫助。

//Program Assignment #3 
//Creates Queue as a Linked Structure

#include<iostream>
#include<string>
#include<fstream>
#include"Employee.h"
#include"LinkedQ.h"

using namespace std;

struct Node
{
    LinkedQ nodeQ;
    Employee EmpNumber;
    Employee LastName;
    Employee FirstName;
    Employee ServiceYears;
};
void loadFile(LinkedQ &);
void addEmp(LinkedQ &);
void delEmp(LinkedQ &);

int main()
{
LinkedQ empList;
int choice;

int numIn, yearsIn;
string LastName;
string FirstName;
LinkedQ empIn;
ifstream input;

input.open("Employee.txt");

while (input)
{
    input >> numIn >> LastName >> FirstName >> yearsIn;
    if (input)
    {
        cout << "this is where we load data from the file into the queue\n";
        system("pause");
        //empIn.Enqueue(numIn, LastName, FirstName, yearsIn);
        //empList.addEmp(empIn);
    }
}

input.close();

do
{
    //display menu
    system("cls");
    cout << "\t\tMenu: \n" 
        << "\t1. Add Employee\n"
        << "\t2. Remove Employee\n" 
        << "\t3. Count of Employees\n" 
        << "\t4. Quit\n\n";
    cout << "Enter your choice and press return: ";

    cin >> choice;

    switch (choice)
    {
    case 1:
        addEmp(empList); // call to function to add an employee to the queue
        break;

    case 2:
        delEmp(empList); // call to fucntion to remove an employee from the queue
        break;

    case 3:
        cout << endl << "Count of Employees: "
            << empList.GetLength() << endl;    // See how many employees are in the queue
        system("pause");
        break;

    case 4:
        cout << "End of Program";           // End Program
        break;

    default:                                
        cout << "Not a valid choice!" << endl;
        cout << "Choose Again.";                    // Handling incorrect inputs
        system("pause");
        break;
    }
} while (choice != 4);      // If choice is not 4, continue running program

return 0;
}

//***********************************
//Loads the file (having trouble figuring out how to implement this part)
//***********************************
void loadFile(Employee &empList)
{
int numIn, yearsIn;
string LastName;
string FirstName;
LinkedQ empIn;
ifstream input;

input.open("Employee.txt");

while (input)
{
    input >> numIn >> LastName >> FirstName >> yearsIn;
    if (input)
    {
        cout << "this is where we load data from the file into the queue";
        //empIn.setFields(numIn, LastName, FirstName, yearsIn);
        //empList.addEmp(empIn);
    }
}

input.close();
}

//***************************************
//add an employee
//***************************************
void addEmp(LinkedQ &empList)
{
Employee newEmp;

newEmp.user();

empList.Enqueue(newEmp);
}

//****************************************
//remove a employee
//****************************************
void delEmp(LinkedQ &empList)
{
Employee EmpToRemove;
int empNum;
//  bool successful;

cout << "Please enter EMPLOYEE NUMBER of employee to remove:";
cin >> empNum;

EmpToRemove.setEmpNumber(empNum);

empList.Dequeue(EmpToRemove);

//successful = empList.Dequeue(EmpToRemove);

//if (successful == true)
//{
    cout << "Removed" << endl << endl;
    system("pause");
//}
//else
//{
//  cout << "Emp Not found" << endl << endl;
//}

}

這是LinkedQ實現文件:

//LinkedQ class

#include "LinkedQ.h"
#include <cstddef>
#include <new>

struct NodeType
{
Employee info;
NodeType* next;
};

LinkedQ::LinkedQ(void)
{
newNode = nullptr;
front = NULL;
rear = NULL;
length = 0;
}

void LinkedQ::MakeEmpty()
{
NodeType* tempPtr;

while (front != NULL)
{
    tempPtr = front;
    front = front->next;
    delete tempPtr;
}

rear = NULL;
}

LinkedQ::~LinkedQ(void)
{
MakeEmpty();
}

bool LinkedQ::IsFull() const
{
NodeType* location;
try
{
    location = new NodeType;
    delete location;
    return false;
}
catch (std::bad_alloc exception)
{
    return true;
}
}

bool LinkedQ::IsEmpty() const
{
return (front == NULL);
}

void LinkedQ::Enqueue(Employee newItem)
{
if (IsFull())
    cout << "Queue is Full";
//  throw FullQueue();
else
{
    NodeType* newNode;

    newNode = new NodeType;
    newNode->info = newItem;
    newNode->next = NULL;
    if (rear == NULL)
    {
        front = newNode;
    }
    else
    {
        rear->next = newNode;
    }
    rear = newNode;
    length++;
}
}

void LinkedQ::Dequeue(Employee& item)
{
if (IsEmpty())
{
    //throw EmptyQueue();
    cout << "Queue is empty";
}
else
{
    NodeType* tempPtr;

    tempPtr = front;
    item = front->info;
    front = front->next;
    if (front == NULL)
    {
        rear = NULL;
    }
    delete tempPtr;
    length--;
}
}

int LinkedQ::GetLength() const
{
return length;
}

這是Employee實現文件:

//employee Class

#include"Employee.h"

//Constructor
Employee::Employee()
{
EmpNum = 0;                                             
}

//setters

void Employee::setEmpNumber(int eNum)
{
EmpNum = eNum;
}

void Employee::setEmpName(string LName)
{
LastName = LName;
}

void Employee::setEmpFirstName(string FName)
{
FirstName = FName;
}

void Employee::setYearsService(int years)
{
YearsService = years;
}

void Employee::setFields(int num, string LN, string FN, int years)
{
EmpNum = num;
LastName = LN;
FirstName = FN;
YearsService = years;
}

void Employee::user()                                                 
{
string inputString;
int intNumber;

cout << "Employee Number ";
cin >> intNumber;
while (intNumber <= 0)                                                  
{
    cout << "Employee Number "; 
    cin >> intNumber;
}
EmpNum = intNumber;

cout << "Last Name: ";
cin >> inputString;
LastName = inputString;

cout << "First Name: ";
cin >> inputString;
FirstName = inputString;

cout << "Years of Service: ";
cin >> intNumber;
while (intNumber < 0)                                                   
{
    cout << "Years of Service ";
    cin >> intNumber;

}
cout << endl;
YearsService = intNumber;

}

//getters
const int Employee::getEmpNumber()
{
return EmpNum;
}

const string Employee::getLastName()
{
return LastName;
}

const string Employee::getFirstName()
{
return FirstName;
}

const int Employee::getYearsService()
{
return YearsService;
}

//overloads

bool Employee::operator == (const Employee &right)
{
bool status;
if ( EmpNum == right.EmpNum)
    status = true;
else
    status = false;
return status;
}

bool Employee::operator != (const Employee &right)
{
bool status;

if (EmpNum != right.EmpNum)
    status = true;
else
    status = false;
return status;
}

我認為loadFile的參數應為LinkedQ類型,如果我理解正確的話,它是隊列類/結構,而empIn變量應為Employee類型。

編輯:

您在empList對象上調用的方法應該是Enqueue ,而不是addEmp

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM