0

次のような雇用主の名前のリストがあります。

ノード 1: ジル、マット、ジョー、ボブ、マット

ノード 2: Jeff、James、John、Jonathan、John、Edward

ノード 3: Matt、Doe、Ron、Pablo、RonChaseRon、Chase、Loui

繰り返しがある場合は、リストの先頭に送信し、その現在のノードを削除する場所に移動しようとしています。これにより、次のようになります

ノード 1:マット、ジル、ジョー、ボブ

ノード 2:ジョン、ジェフ、ジェームズ、ジョナサン、エドワード

ノード 3: ChaseRon、Matt、Doe、Pablo、Loui

残念ながら、私の出力は私が望むものに近いものです。重複したエントリを削除していますが、前面に送信していません。.

私の出力:

ノード 1: ジル、マット、ジョー、ボブ、

4

4 に答える 4

1

さて、見てみましょう:

if (ptr->data == p->data)その時点でヒットすると、次のようになります。

  • ppリストの最後を指す
  • pあなたは新しいノードですか(何も指しておらず、何も指していません)
  • ptrデータが重複しているノードを指している

nextノードを削除するには、実際にポインターが指している必要があります。ptrそれ以外の場合は、どのようにリストから削除できますptrか? したがって、実際に確認する必要があります:

if (head && head->data == p->data)
{
    // do nothing as duplicate entry is already head of list
    delete p;
    return;
}

node *ptr = head;
while (ptr)
{
    if (ptr->next && ptr->next->data == p->data)
    {
        node *duplicate = ptr->next;
        ptr->next = duplicate->next; // skip the duplicate node
        duplicate->next = head;      // duplicate points to head
        head = duplicate;            // head is now the duplicate
        delete p;                    // otherwise leaking memory
        return;
    }
    ptr = ptr->next;
}

if (pp) // points to tail as per your code
{
    pp->next = p;
    ++N;
}
于 2013-09-23T00:57:13.483 に答える
0

価値があるので、おそらくこのように実装します。

class EmployerCollection
{
public:
    typedef std::list<std::string> EmployerList;

public:
    bool AddEmployer(const std::string& name)
    {
        EmployerList::const_iterator it = std::find(m_employers.begin(), m_employers.end(), name);
        if (it != m_employers.end()) // Already exists in list.
        {
            m_employers.splice(m_employers.begin(), m_employers, it, std::next(it));
            return true;
        }
        m_employers.push_front(name);
        return false;
    }

private:
    EmployerList m_employers;
};

int main()
{
    const int NUM_EMPLOYERS = 15;
    std::string employers[NUM_EMPLOYERS] = {"Jill", "Jeff", "Doe", "Pablo", "Loui", "Ron", "Bob", "Joe", "Monica", "Luis", "Edward", "Matt", "James", "Edward", "John"};

    EmployerCollection c;

    for (int i=0; i<NUM_EMPLOYERS; i++)
    {
        bool duplicate = c.AddEmployer(employers[i]);
        printf("Added %s to employer list - duplicate: %s \n", employers[i].c_str(), duplicate ? "True" : "False");
    }

    system("pause");
} 
于 2013-09-23T01:05:29.607 に答える
0

検索機能を追加しました

typedef struct node{
  string data;
  struct node *net, *prev;
 }node;      


class list {
public:
    list():head(NULL), N(0){}
    ~list(){
    //Implementation for cleanup
     }

void add(string name){  //rather than accessing the global data, use the value passed
    node* p = new node(name);
    p->next=p->prev=NULL;
    node* pp = find(name);
    if(pp==NULL){
      // No match found, append to rear
      if(head==NULL)
        head=p;  //list empty, add first element
      else{
        node* cur=head;
        while(cur->next!=NULL) //Keep looking until a slot is found
          cur=cur->next;
        cur->next=p;
        p->prev=cur;
      }
    }
    else{
        //Match found, detach it from its location
        node* pPrev = pp->prev;
        pPrev->next = pp->next;
        pp->next->prev=pPrev;
        p->next = head; //append it to the front & adjust pointers
        head->prev=p;
    }
    N++;
    }

    //MER: finds a matching element and returns the node otherwise returns NULL
    node* find(string name){
        node *cur=head;
        if(cur==NULL) // is it a blank list?
          return NULL;
        else if(cur->data==head) //is first element the same?
          return head;
        else   // Keep looking until the list ends
          while(cur->next!=NULL){
          if(cur->data==name)
            return cur;
            cur=cur->next;
          }
        return NULL;
}
friend ostream& operator << (ostream& os, const list& mylist);

private:
    int N;
    node *head;

};

ここで、STL のリストを使用して独自のコードを記述しないでくださいと言う人もいるかもしれません。STL に勝るものはありませんが、実際にどのように機能するかについて明確なアイデアを得るために独自のコードを実装しているのは良いことです。

于 2013-09-24T06:33:23.640 に答える