वास्तव में यदि आप सूची बोध के लिए बस Linq का उपयोग करना चाहते हैं, तो आप इस Linq पुस्तकालय का उपयोग कर सकते हैं । इसके लिए C ++ 11 (यह MSVC 2010 में काम करेगा) और बूस्ट की आवश्यकता है। पुस्तकालय के साथ आप इस तरह linq के प्रश्नों को लिख सकते हैं:
struct student_t
{
std::string last_name;
std::vector<int> scores;
};
std::vector<student_t> students =
{
{"Omelchenko", {97, 72, 81, 60}},
{"O'Donnell", {75, 84, 91, 39}},
{"Mortensen", {88, 94, 65, 85}},
{"Garcia", {97, 89, 85, 82}},
{"Beebe", {35, 72, 91, 70}}
};
auto scores = LINQ(from(student, students)
from(score, student.scores)
where(score > 90)
select(std::make_pair(student.last_name, score)));
for (auto x : scores)
{
printf("%s score: %i\n", x.first.c_str(), x.second);
}
जो आउटपुट देगा:
Omelchenko score: 97
O'Donnell score: 91
Mortensen score: 94
Garcia score: 97
Beebe score: 91