0

やあみんな、私はプロジェクトに取り組んでいて、この壁にぶつかるまではかなりうまくいっていました..

次の 2 つのエラーが発生します。

エラー: 'binarySearch' はこのスコープで宣言されていません

エラー: 'addInOrder' はこのスコープで宣言されていません

これが私のファイルです。かなりの数のことを試しましたが、役に立ちませんでした。助けていただければ幸いです。

ヒストグラム.cpp

#include "histogram.h"
#include "countedLocs.h"

//#include "vectorUtils.h"
#include <string>
#include <vector>

using namespace std;
void histogram (istream& input, ostream& output)
{
  // Step 1 - set up the data
  vector<CountedLocations> countedLocs;

  // Step 2 - read and count the requested locators
  string logEntry;
  getline (input, logEntry);
  while (input)
    {
      string request = extractTheRequest(logEntry);
      if (isAGet(request))
    {
      string locator = extractLocator(request);

      int position = binarySearch (countedLocs,
                       CountedLocations(locator, 0));
      /** Hint - when looking CountedLocations up in any kind
          of container, we really don't care if the counts match up
          or not, just so long as the URLs are the same. ***/

      if (position >= 0)
        {
          // We found this locator already in the array.
          // Increment its count
          ++countedLocs[position].count;
        }
      else
        {
          // This is a new locator. Add it.
          CountedLocations newLocation (locator, 1);
          addInOrder (countedLocs, newLocation);
        }
    }
      getline (input, logEntry);
    }

  // Step 3 - write the output report
  for (int i = 0; i < countedLocs.size(); ++i)
    output << countedLocs[i] << endl;
}

countLocs.cpp

#include "countedLocs.h"
#include <iostream>
#include <vector>

using namespace std;


int CountedLocations::binarySearch(const vector<CountedLocations> list, CountedLocations searchItem)
{
   //Code was here
}

int CountedLocations::addInOrder (std::vector<CountedLocations>& vectr, CountedLocations value)
{
   //Code was here
}

countLocs.h

#ifndef COUNTEDLOCATIONS
#define COUNTEDLOCATIONS

#include <iostream>
#include <string>
#include <vector>


struct CountedLocations
{

    std::string url;
    int count;

    CountedLocations (){
     url = "";
     count = 0;
    }

    CountedLocations(std::string a, int b){
     url = a;
     count = b;
    }

    int addInOrder (std::vector<CountedLocations>& vectr, CountedLocations value);
    int binarySearch (const std::vector<CountedLocations> list, CountedLocations searchItem);
};

inline
std::ostream& operator<< (std::ostream &out, CountedLocations& cL)
{
    //out << "URL: " << cL.url << " count: " << cL.count << std::endl;

    out << "\"" << cL.url << "\"," << cL.count;
    return out;
}

#endif
4

4 に答える 4

0

名前空間とは何かを確認する必要があります。

これまでのところ、クラス CountedLocations を宣言します。しかし、明らかに機能しない CountedLocations 名前空間の外でメンバー関数を使用しようとします。

int position = binarySearch (countedLocs,
                   CountedLocations(locator, 0));

binarySearch は、CountedLocations 名前空間のメンバー関数です。その関数を呼び出す場合は、そのメンバー関数への参照を含むオブジェクトを作成する必要があります。

CountedLocation myObject;
int position = myObject.binarySearch (countedLocs, CountedLocations(locator, 0));

それがあなたの問題を解決するかどうかはわかりませんが、問題を解決しようとする前にこれを知っておくべきです.

于 2013-11-13T19:19:39.070 に答える