📚 Learn programming with these Free E-Books ⬇ C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook 🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/ Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time! 💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10). Use it quickly, because it will be available for a limited time.
Use this link to sign up for my practical programming course and I will send you notification with the discount once it is published. I gave my best to make it as good as possible :) Cheers.
I am curious how "sort(students, student+5, compareByGrade)" works when compareByGrade would seem only to compare one element to the next. It would require many passes to sort the data, right? Is that what is happening automatically behind the scenes in sort(), or do I not understand?
Here's a new video idea: the same topics but using modern C++ features like ranges and lambdas. It would make for a nice contrast while making the code smaller, simpler and safer.
Other things to consider in searching and sorting are what to do if multiple students with the same name exist in a search, searching for grades above or below a certain value, and secondary sorts like descending grades sorted alphabetically by name for grades that occur more than once. Perhaps these concepts are beyond the scope of "beginner" tutorials...
📚 Learn programming with these Free E-Books ⬇
C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book
Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook
🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/
Experience the power of practical learning, gain career-ready skills, and start building real applications!
This is a step-by-step course designed to take you from beginner to expert in no time!
💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10).
Use it quickly, because it will be available for a limited time.
I'm a student and you're the only reason why I get good grades on my exams
best explanation of arrays and algorithms on that i could find on youtube
always good to hear :D
I'm so happy that I found your channel. I can honesty say that you changed my life ❤❤
I'm so glad!
thank you saldina, this is the video that I've been searching for
I love the task at the end of the video. Very good for practicing
Glad you liked it!
great job as always 👌👌
Beautiful and smart teacher
You are so kind
The best teacher ever, thank you for making anything easy 🤗🤗
You're very welcome!
I am sure it is going to be amazing class
right on point, as usual, clear and concise, precious :)
Thank you kindly!
great job, thank you Saldina, this is very helpful
this video is a treasure
The tips about using pass by reference was most helpful to me. I need to play around with that some more to fully understand it. Thanks!
Certainly, practice is everything and curiosity is always rewarded (in programming at least :D)
You always inspire me through programming.
🚀✨️
very helpful, thank you so much
You're so welcome!
Excellent explanation and very good homework . Keep up doing new videos Saldina. I am very keen on programming 👍
Use this link to sign up for my practical programming course and I will send you notification with the discount once it is published. I gave my best to make it as good as possible :)
Cheers.
superb Teacher thanks you so much.
Great job good teaching method
I am curious how "sort(students, student+5, compareByGrade)" works when compareByGrade would seem only to compare one element to the next. It would require many passes to sort the data, right? Is that what is happening automatically behind the scenes in sort(), or do I not understand?
Thanks, anything regarding data wrangling is interesting to me
Saldina should be grade 10 in the example 🥰
thanks for your support
Always welcome
Huge thumbs up 🤠👍
Name of channel match perfectly
Thank you 🥰❤️
After completing your video, something is definitely hard but its not the concept of array 😳❤
Hi saldina.. Any idea of starting advanced topics like mutex, semaphores, process sync topics? Most awaiting.
I just added all of these topics to my too list. Thanks for the suggestions 🥰
Thankyou
You’re welcome 😊
thank you
Here's a new video idea: the same topics but using modern C++ features like ranges and lambdas. It would make for a nice contrast while making the code smaller, simpler and safer.
❤❤
Other things to consider in searching and sorting are what to do if multiple students with the same name exist in a search, searching for grades above or below a certain value, and secondary sorts like descending grades sorted alphabetically by name for grades that occur more than once. Perhaps these concepts are beyond the scope of "beginner" tutorials...
Is this code available?
Saldana has 7.2 and Alice has 10. Alice’s score was updated.
Saldina* :D
@@CodeBeauty Saldina! I stand corrected… my apologies.
Blaming: autocorrect!
😻😻😻😻😻😻😻😻😻
Comment
are there solution for your homework ? because i want to compare my solution to yours
Tum kya mila
Here's how I might do that:
struct Student {
std::string mName;
bool mGenderMale{ false };
int mGrade{ 0 };
Student(const std::string& name, bool isGenderMale, int grade)
: mName(name), mGenderMale(isGenderMale), mGrade(grade)
{}
};
std::array students = {
Student{"John", true, 20}
, {"Jane", false, 21}
, {"Jack", true, 22}
, {"jason", true, 23}
, {"nick", true, 24}
, {"nancy", false, 25}
};
std::string studentNameToFind = "Jane";
auto studentFound = std::find_if(std::execution::seq, students.begin(), students.end(), [&](const auto& student) {
return student.mName == studentNameToFind;
});
if (studentFound != students.end()) {
auto& [name, isMale, grade] = *studentFound;
std::cout b.mGrade;
});
auto& bestGrade = students.front();
auto& worstGrade = students.back();
//now sort by gender and grade
//females are in the front of the array and males are at the end
std::sort(std::execution::par, students.begin(), students.end(), [](const auto& a, const auto& b) {
return a.mGenderMale < b.mGenderMale || a.mGenderMale b.mGrade;
});
for (auto& student : students) {
std::cout