c++ - 不允许重复的功能? (C++)

标签 c++ sorting abstract-data-type

所以我想修改一个函数,它的初始目的是让一个字符串在它的数组中不能有超过 6 个项目。这是代码

template<class ItemType>
bool Bag<ItemType>::Add(const ItemType& new_entry)
{
  bool has_room_to_add = item_count_ < max_items_;
  if (has_room_to_add)
   {
      items_[item_count_] = new_entry;
      item_count_++;
   }  // end if
  return has_room_to_add;
}  // end add

这是我的尝试。

template<class ItemType>
bool set<ItemType>::Add(const ItemType& new_entry)
{
  string checker[] = { "Joker", "Ace", "Two", "Three",
      "Four", "Five", "Six", "Seven",
      "Eight", "Nine", "Ten", "Jack",
      "Queen", "King" };
  bool has_room_to_add = item_count_ < max_items_;

  //compares the new entry to every item in the string and if there is a duplicate, the loop breaks and nothing is added.
   if (has_room_to_add)
   {
         for ( int i =0; i <=13; i++)
        {
            if (checker[i] == items_[item_count_])
                break;  //ends loop

            else if (i==13)
            {
                items_[item_count_] = new_entry;
                break;  //ends loop
            }  // end if
        } // end for
   } //end if

// increases item_count_ if a new item is added to a set.
  if (items_[item_count_] == new_entry)
      item_count_++;

  return has_room_to_add;
}  // end add

但这不仅不能防止重复,它打破了不允许超过 6 个项目的最初目的,如果超过 6 个就会变得困惑。谁能告诉我我做错了什么?

最佳答案

执行此操作的 C++ 方法是使用 std::set,因为 std::set 不存储重复项。

#include <set>
#include <string>
#include <iostream>
#include <iterator>
#include <algorithm>

using namespace std;

int main()
{
   string checker[] = { "Joker", "Ace", "Two", "Three",
      "Four", "Five", "Six", "Seven",
      "Eight", "Nine", "Ten", "Jack",
      "Queen", "King",  "Joker", "Ace", "Two", "Three",
      "Four", "Five", "Six", "Seven",
      "Eight", "Nine", "Ten", "Jack",
      "Queen", "King" };

   set<string> mySet;

   // insert all of the items in the array into the set  
   copy(checker, checker + sizeof(checker)/sizeof(checker[0]), std::inserter(mySet, mySet.begin()));
   // output the results
   copy(mySet.begin(), mySet.end(), std::ostream_iterator<string>(cout, "\n"));
}

输出:

Ace
Eight
Five
Four
Jack
Joker
King
Nine
Queen
Seven
Six

请注意,即使尝试将重复的条目放入集合中,也只存在一个条目。将项目数限制为 6:

#include <set>
#include <string>
#include <iostream>
#include <iterator>
#include <algorithm>

using namespace std;

int main()
{
   string checker[] = { "Joker", "Ace", "Two", "Three",
      "Four", "Five", "Six", "Seven",
      "Eight", "Nine", "Ten", "Jack",
      "Queen", "King",  "Joker", "Ace", "Two", "Three",
      "Four", "Five", "Six", "Seven",
      "Eight", "Nine", "Ten", "Jack",
      "Queen", "King" };

   set<string> mySet;

   // insert all of the items in the array into the set  
   for (size_t i = 0; i < sizeof(checker)/sizeof(checker[0]); ++i)
   {
      if ( mySet.size() < 6 )
         mySet.insert(checker[i]);
      else
         break;
   }

   // output the results
   copy(mySet.begin(), mySet.end(), std::ostream_iterator<string>(cout, "\n"));
}

输出:

Ace
Five
Four
Joker
Three
Two

关于c++ - 不允许重复的功能? (C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26048850/

相关文章:

c - 我无法理解这个简单代码的意义

data-structures - adt和数据结构之间的区别

c++ - Linux、C++、第三方库

c++ - 如何使用 placement new 运算符创建对象数组?

c - 按字母顺序对书名进行排序

javascript - 简单排行榜的冒泡排序

arrays - 使用中位数对数组进行排序

java - 不使用Java库的ADT队列

c++ - 为什么 case 语句中的标签应该是常量?

c++ - 使用字符串赋值和复合赋值安全吗?