Fill in Order Details

  • Submit paper details for free using our simple order form

Make Payment Securely

  • Add funds to your account. There are no upfront payments. The writer will only be paid once you have approved your paper

Writing Process

  • The best qualified expert writer is assigned to work on your order
  • Your paper is written to standard and delivered as per your instructions

Download your paper

  • Download the completed paper from your online account or your email
  • You can request a plagiarism and quality report along with your paper

code a tree sort for c without pointers or class

the code below is how I did selection sort, but now I need to do it with Tree Sort algorithm, I need to use that struct and vector. please do not use pointer, node, or class because I haven’t learn it. So the key is to code a Tree Sort algorithm for this project.

#include<iostream>

#include <fstream>

#include <vector>

#include <string>

#include <ctime> // clock(); CLOCKS_PER_SEC, clock_t

using namespace std;

//Create a new data type Student

struct Student {

string name;

double score;

};

/* Function Declaration*/

void FillVector(string fileName, vector<Student> & studentsList);

void DisplayStudent(vector<Student> & studentsList);

void StudentSort(vector<Student> & studentsList);

double getMilliSeconds(clock_t c);

void outputStudentsSort(vector<Student> & studentsList);

int main()

{

unsigned int t1, t2;

string fileName;

vector<Student> studentsList;

cout << “Enter name of the file: “;

getline(cin, fileName);

FillVector(fileName, studentsList);

cout << “nData of students Found in the text file:” << endl;

DisplayStudent(studentsList);

t1 = clock();

StudentSort(studentsList);

t2 = clock();

cout << ” nTime = ” << getMilliSeconds(t2 – t1) << “milliseconds” << endl;

cout << “nData of students sort by scored :” << endl;

DisplayStudent(studentsList);

outputStudentsSort( studentsList);

system(“pause”);

return 0;

}

//Function Definition

void FillVector(string fileName, vector<Student> & studentsList) {

ifstream inFS;

string name;

double score;

Student newStudent;

//open file

inFS.open(fileName);

if (!inFS.is_open())

{

cout << ” Could not open the file ” << fileName << endl;

cout << “Press any key …..” << endl;

cin.get();

exit(0);

}

//get information of the file

while (!inFS.eof())

{

inFS >> name >> score;

newStudent.name = name;

newStudent.score = score;

studentsList.push_back(newStudent);

}

//close file

inFS.close();

}

void DisplayStudent(vector<Student> & studentsList) {

for (int index = 0; index < studentsList.size(); index++)

{

cout << studentsList[index].name << “t” << studentsList[index].score << endl;

}

}

// Selection Sort by score

void StudentSort(vector<Student> & studentsList) {

int minIndex;

double tempScore;

string tempName;

// One by one move boundary of usorted subarray

for (int i = 0; i < studentsList.size() – 1; i++) {

minIndex = i; // minimal element index

for (int j = i + 1; j < studentsList.size(); j++) {

if (studentsList[j].score < studentsList[minIndex].score) {

minIndex = j;

}

}

// Swap the found minimum element with the first element

tempScore = studentsList[i].score;

studentsList[i].score = studentsList[minIndex].score;

studentsList[minIndex].score = tempScore;

tempName = studentsList[i].name;

studentsList[i].name = studentsList[minIndex].name;

studentsList[minIndex].name = tempName;

}

}

void outputStudentsSort(vector<Student> & studentsList) {

ofstream OutFS;

OutFS.open(“SelectionSortStudents.txt”);

for (int index = 0; index < studentsList.size(); index++)

{

OutFS << studentsList[index].name << “t” << studentsList[index].score << endl;

}

OutFS.close();

}

double getMilliSeconds(clock_t c) {

double time;

time = (double(c) / CLOCKS_PER_SEC) * 10000;

return time;

}

WHAT OUR CURRENT CUSTOMERS SAY

  • Google
  • Sitejabber
  • Trustpilot
Zahraa S
Zahraa S
Absolutely spot on. I have had the best experience with Elite Academic Research and all my work have scored highly. Thank you for your professionalism and using expert writers with vast and outstanding knowledge in their fields. I highly recommend any day and time.
Stuart L
Stuart L
Thanks for keeping me sane for getting everything out of the way, I’ve been stuck working more than full time and balancing the rest but I’m glad you’ve been ensuring my school work is taken care of. I'll recommend Elite Academic Research to anyone who seeks quality academic help, thank you so much!
Mindi D
Mindi D
Brilliant writers and awesome support team. You can tell by the depth of research and the quality of work delivered that the writers care deeply about delivering that perfect grade.
Samuel Y
Samuel Y
I really appreciate the work all your amazing writers do to ensure that my papers are always delivered on time and always of the highest quality. I was at a crossroads last semester and I almost dropped out of school because of the many issues that were bombarding but I am glad a friend referred me to you guys. You came up big for me and continue to do so. I just wish I knew about your services earlier.
Cindy L
Cindy L
You can't fault the paper quality and speed of delivery. I have been using these guys for the past 3 years and I not even once have they ever failed me. They deliver properly researched papers way ahead of time. Each time I think I have had the best their professional writers surprise me with even better quality work. Elite Academic Research is a true Gem among essay writing companies.
Got an A and plagiarism percent was less than 10%! Thanks!

ORDER NOW


Consider Your Assignments Done

“All my friends and I are getting help from eliteacademicresearch. It’s every college student’s best kept secret!”

Jermaine Byrant
BSN

“I was apprehensive at first. But I must say it was a great experience and well worth the price. I got an A!”

Nicole Johnson
Finance & Economics

Our Top Experts

See Why Our Clients Hire Us Again And Again!


OVER

10.3k
Reviews

RATING
4.89/5
Average

YEARS
13
Mastery

Success Guarantee

When you order form the best, some of your greatest problems as a student are solved!

Reliable

Professional

Affordable

Quick

Using this writing service is legal and is not prohibited by any law, university or college policies. Services of Elite Academic Research are provided for research and study purposes only with the intent to help students improve their writing and academic experience. We do not condone or encourage cheating, academic dishonesty, or any form of plagiarism. Our original, plagiarism-free, zero-AI expert samples should only be used as references. It is your responsibility to cite any outside sources appropriately. This service will be useful for students looking for quick, reliable, and efficient online class-help on a variety of topics.