I wrote the following code to take in many inputs and then output them in a specific order.
#DEFINE cases 100
struct job
{
int w;
};
class compjob
{
public:
bool operator()( job j1,job j2)
{
if(j2.w>j1.w)
return true;
return false;
}
};
int main()
{
priority_queue< job, vector<job>, compjob > jobs;
int weight;
for(int i=1;i<=cases;i++)
{
cin>>weight;
job job1;
job1.w=weight;
jobs.push(job1);
} //for loop ends here
for(int i=1;i<=cases;i++)
{
job job1= jobs.pop(); ////////////ERROR!!!!!/////////
cout<<job1.w<<endl;
}
return 0;;
}
But when I compile the code, a compile error is displayed on the line marked above:
Invalid conversion from 'void' to non scalar 'job'.
I think that I didn't declare jobs priority_queue correctly. Also, please explain the significance of second argument in the declaration(i.e. vector, I don't really know its use)
if (…) return true; else return false;toreturn …;. – Konrad Rudolph Dec 19 '12 at 10:54<queue>? – billybob Dec 19 '12 at 10:55