У меня есть связанный список:
LinkedList > thelist;
Итак, точное объявление:
LinkedList <<strong> std :: pair > thelist;
Предположим, я сохранил серию Process внутри списка, и первый тип данных пары (т.е. string ) идентифицирует что это за категория процесса. Скажем, если выбрана категория «Стоп», она сохраняет Процесс внутри списка в разделе «Стоп», а если категория - «Возобновить»: Процесс сохраняется в разделе «Возобновить» и т. Д. Моя проблема в том, что я изо всех сил пытаюсь получить доступ к двум типам данных в паре для других методов, которые мне необходимо реализовать. Например: мне нужно реализовать метод под названием Count_category (строковая категория), который будет подсчитывать количество процессов внутри данной категории, но я не могу понять, как это сделать, поскольку я не знаю, как получить доступ к первому тип данных. Я до сих пор понял, что к нему можно получить доступ, выполнив такие же действия, как class.first и class.second, но не могу понять, как я бы использовал его в моем случае. Помогите !!
Я включаю свой связанный список.hpp, если вам нужен мой объект класса, который используется в паре, дайте мне знать.
#ifndef LINKED_LIST_
#define LINKED_LIST_
#include <utility> //for swap
#include <exception>
#include "Node.hpp"
template<typename T>
class LinkedList
{
private:
Node<T>* head; // Pointer to first node in the chain;
// (contains the first entry in the list)
int count; // Current count of list items
// Locates a specified node in this linked list.
// @pre position is the number of the desired node;
// position >= 1 and position <= itemCount.
// @post The node is found and a pointer to it is returned.
// @param position The number of the node to locate.
// @return A pointer to the node at the given position.
Node<T>* getNodeAt(int position) const;
void swap( LinkedList& lhs, LinkedList& rhs );
public:
LinkedList();
LinkedList(const LinkedList<T>& rhs);
virtual ~LinkedList();
LinkedList& operator=( LinkedList rhs );
bool isEmpty() const;
int get_count() const;
bool insert(int newPosition, const T& newEntry);
bool remove(int position);
void clear();
T getEntry(int position) const;
T replace(int position, const T& newEntry);
}; // end LinkedList
#endif
``````````````````````````````````````````````````````````````
##This is where I'm stuck: (it's in a different class called PManager that uses this Linked List);##
``````````````````````````````````````````````````````````````````
int PManager::count_category(std::string category) const
{
int count = 0;
for (int i = 1; i <= theList.get_count(); i++)
{
if (category == (this is where I need to access the category from the pair)
{
count++;
}
}
```````````````````````````````````````````````````````