在我的作业中,我知道我需要使用我的堆删除函数来返回要打印的变量。但是任务中的要求很模糊,我很好奇是否有人可以给我一个更好的解释。我对如何使用第二个或第三个参数感到很困惑,我知道需要进行一些排序,我需要两个 for 循环,但在那之后我迷路了。这是作业的内容:
template <class T, class P> void print_list (vector<T>&,
const int, const int, P);
此函数从堆结构中检索项目并将它们打印到标准输出上。要从堆结构中检索单个项目,它会调用 remove 函数。此函数的第一个参数是堆结构的向量,第二个参数是在标准输出上分配的打印项的大小,第三个参数是单行上的最大打印项数,最后一个参数是谓词.
这是我的代码:
#include "340.h"
#ifndef H_PROG7
#define H_PROG7
// data files
#define D1 "prog7.d1"
#define D2 "prog7.d2"
#define D3 "prog7.d3"
#define INT_SZ 4 // width of integer
#define FLT_SZ 7 // width of floating-pt number
#define STR_SZ 12 // width of string
#define INT_LN 15 // no of integers on single line
#define FLT_LN 9 // no of floating-pt nums on single line
#define STR_LN 5 // no of strings on single line
// function prototypes
template<class T,class P> void insert(vector<T>&, const T&, P);
template<class T,class P> T remove(vector<T>&, P);
template<class T,class P> void upheap(vector<T>&, int, P);
template<class T,class P> void downheap(vector<T>&, int, P);
template<class T,class P>
void get_list(vector<T>&, const char*, P);
template<class T,class P>
void print_list(vector<T>&, const int, const int, P);
template<class T, class P>
void get_list(vector<T>& v, const char* file, P func) {
ifstream inFile("file");
T data;
while(inFile >> data) {
inFile >> data;
insert(v, data, func);
}
}
template<class T, class P>
void insert(vector<T>& v, const T& data, P func) {
v.push_back( data );
upheap( v, v.size()-1, func );
}
template<class T,class P>
void upheap(vector<T>& v, int start, P func) {
while( start <= v.size()/2 ) {
unsigned int parent = start / 2;
if( parent - 1 <= v.size() && v[parent - 1] > v[parent] )
parent = parent - 1;
if( v[start] <= v[parent] )
break;
swap( v[start], v[parent] );
start = parent;
}
}
template<class T,class P>
void downheap(vector<T>& v, int start, P func) {
while(start <= v.size()/2 ) {
unsigned int child = 2 * start;
if( child + 1 <= v.size() && v[child + 1] > v[child])
child = child + 1;
if( v[start] >= v[child] )
break;
swap( v[start], v[child] );
start = child;
}
}
template<class T,class P>
T remove(vector<T>& v, P func) {
swap( v[0], v.back() );
T& item = v.back();
v.pop_back();
downheap( v, 1, func );
return item;
}
template<class T,class P>
void print_list(vector<T>& v, const int size, const int line, P func) {
for(int i = 1; i < v.size(); i++) {
cout << remove(v, func) << " ";
}
}
#endif