CS计算机代考程序代写 b’0e7c5080ee225c85d886cc7d887f44aca64049′

b’0e7c5080ee225c85d886cc7d887f44aca64049′

blob 374�#include

#include “authtableentry.h”
#include “sequentialmap.h”

using namespace std;

/// Create an instance of SequentialMap that can be used as an authentication
/// table
///
/// @param _buckets The number of buckets in the table
Map *authtable_factory(size_t _buckets) {
return new SequentialMap(_buckets);
}