C/C++ :: Sorting By Name / Surname

Apr 15, 2014

I have a text file containing the names and surnames of enrollment numbers and grades of students

(looks like this:
RIKI Rikic E2345678 10
JUPI jupic E1232345 9
Etc ......)

I'm interested in sorting by name and surname, registration number and grade.My example:

struct student {
string name;
string surname;
string enrollment;
int grade;

[Code] ....

View 2 Replies


ADVERTISEMENT

C++ :: Get User Name And Surname In Active Directory?

Sep 11, 2013

I have a logined user and my running program as system process (not user process).

I want to get user name and surname from AD.

1. GetUserName() dont useful becouse it gets name for current process owner(for SYSTEM in my case).

2. There are userLogin, userName, userSurname and userDisplayedName in user properties of AD. Its possible to get userDisplayedName by NetUserGetInfo(), but
I want to know is it possible to get userName and userSurname?

View 1 Replies View Related

C++ :: Sort By Name / Surname / Registration Number And Grade

Apr 15, 2014

I have a text file containing the names and surnames of enrollment numbers and grades of students , looks like this:

RIKI Rikic E2345678 10
JUPI jupic E1232345 9
  Etc ......)
 
I'm interested in sorting by name and surname, registration number and grade.My example:
 
struct student {
string name;
string surname;
string enrollment;
int grade;
};
 
and in the main program
int main () {
Student STUDENT;
 
/ / Code to read a text file that I wrote so I have ...
 
switch ()
case '1 ': / / sort by name
case 2: / / by surname
Case 3 / / by enrollment
Case 4 / / by grade
 
this sort we are not going very well .

View 1 Replies View Related

Visual C++ :: Enter First And Surname And Then Display Full Name

Sep 21, 2012

I'am new to C++, program is : enter first and surname and then display the full name:

code below:

// Enter first and surname and then display the full name.
#include<iostream>
#include<string>
#include<cctype>
using namespace std;

[Code] ....

View 10 Replies View Related

C++ :: How To Sort And Print Out Object By Surname In Alphabetical Order

Oct 2, 2013

A link list problem, i need some how to sort and print out an object by surname in alphabetical order.

i have a try to do that by this code not working for swamping i should i go about that?
May another way of swapping using pointer instead?

void functions::printdata() {
for(node* temp1=head;temp1!=NULL;temp1=temp1->next) {
for(node* temp2=head;temp2!=NULL;temp2=temp2->next) {

[Code]...

View 1 Replies View Related

C++ :: Before And After Sorting Net Pay

May 14, 2014

I'm working on a program for payroll that will calculate and display a list of payroll variables (including net pay) then run again sorting the net pay. So the program should run once display all the variables with the net pay not sorted then run a second time with the net pay sorted.

I've written a program. It is working. But it only runs once and it and it only displays the results with the net pay after it's sorted. What I need to do in order to get it to run a first time without sorting the net pays before it runs the second time sorting the net pays.

My input file reads:
1645JohnDoe4025.00
8932JaneSmith4020.00
7104ChrisDavis4012.50
2816SaraWhite4026.00
5387AliceBaker4021.00
6780LauraJackson4013.50
5641JackBenson4011.25

9000KateRussle6025.00
9001MattJones5020.00
9002FredShultz5523.00

My Output for Net Pay Post Sorting reads:
405.00
450.00
486.00
720.00
756.00
832.00
880.00
900.00
1150.00
1400.00

My Output for Net Pay Pre Sorting should read:
900.00
720.00
450.00
832.00
756.00
486.00
405.00
1400.00
880.00
1150.00

My Program Reads:

#include <iostream>
#include <iomanip>
#include<fstream>
#include <string>
using namespace std;
//function prototypes
int readalldata(long int id[], string fname[], string lname[], int hoursworked[], float hourlyrate[], int n);

[Code] ....

View 2 Replies View Related

C :: Sorting Four Numbers

Mar 2, 2013

I'm trying to take a users input and break it up into four separate numbers, then take those numbers and arrange them from smallest to largest.So far I can't seem to get them working right.

Code:

# include <stdio.h>main ()
{
int inputVariables[4]; //where userinput goes after being broken up
int arrangedValues [4];// the user values arranged lowest to highest
int i;
int j;
}

[code].....

View 4 Replies View Related

C++ :: Sorting First And Last Name With Netpay

May 14, 2014

So my ongoing work sorting my net pay program continues.I've got it working to the point where it sorts the net pay and only the net pay. I've been told I can comment out the other variables (hours worked, hourly rate, etc...) with the exception of First Name, and Last Name which I need to sort along with Net Pay.I need to sort First Name and Last Name along with Net Pay so that while Net Pay is being sorted it still corresponds to the same individual.

Right now as I'm only sorting Net Pay and individuals end up with different Net Pays as the sorting occurs. This is the programs current output (Pre Sorting)

John Doe 900.00
Jane Smith 720.00
Chris Davis 450.00
Sara White 832.00
Alice Baker 756.00
Laura Jackson 486.00
Jack Benson 405.00
Kate Russle 1400.00
Matt Jones 880.00
Fred Shultz 1150.00

[code]....

View 5 Replies View Related

C++ :: Sorting 2 Corresponding Arrays?

Nov 21, 2013

I am trying sort my Calorie array and day array corresponding to each other but how to start i cant grasp the concept for some reason. I want it to sort by calories in descending order.

So instead of this...

Day: Calories:

1 200
2 500
3 400
4 600
5 100

I want this.....

5 100
1 200
3 400
2 500
4 600

#include <cstdlib>
#include <iostream>
using namespace std;
//Prototypes
int getDays(int);
void getCal(int*,int);
float calcSum(float,int*,int);

[Code] ....

View 1 Replies View Related

C++ :: Map Inside A Map Sorting

Feb 21, 2015

I have a map which contains a multiset and another map

std::map<std::multiset<int>, std::map<int, int> >

And I need to sort the whole map according to the mapped value of the inside map, then output the data from the keys i.e. from the multiset and the first value of the inside map. I have tried to create a vector of pairs

std::vector<pair<std::map<:std::multiset<int>, std::map<int, int> >, int> >

and populate the first element with the map and where the second integer of the pair will be the mapped value to sort. I have tried iterating over the map to populate the vector but I'm not sure how to do so.

View 9 Replies View Related

C# :: Sorting A ListView?

Apr 22, 2014

at the moment I lack access to the pc with the code on it, so for now I will try to keep my question basic.

now here is my problem: I have a listview witch is populated by user input(lets say for the ease of argument that the input is "first-name" "last-name" and "e-mail adres") all of with get there information from textboxes.
then all the information gets stored in a list and on closing that list is stored in a xml-file in the following format

<Root>
<Data>
<first-name>
Samual

[Code].....

the input, saving and loading is no problem. when you open the file this listview is in view = List so that you only see the last-name(I prefer it that way since I know how to code that) and when you click it it fills the textboxes with the corresponding information.

what I am trying to figure out it how to make it that it sorts itself(preferred sorting when something is changed).
I tried the ListView.sorting = SortOrder.Ascending; when I do it that way it messes up the corresponding information(is it clear what I mean or do I need to add an example).

View 3 Replies View Related

C++ :: Sorting Values In Array?

Feb 8, 2015

I tried sorting arr2 from lowest to highest value, but it only gives me 4 values and then the rest are zero.

Code:
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
cout << fixed << setprecision(1);

[code].....

View 1 Replies View Related

C++ :: Bubble Sorting Of Strings

Sep 20, 2013

I have to read data from a text file, load it into an array and then bubble sort it! Here is my code:

Code:
#include <iostream>
#include <string>
#include <fstream>

[Code]....

Basically what i am trying to do is that sort the names of 10,000 movies and then write those names to a text file. It gives an error in the nested loop by underlining arr and tells that no suitable conversion function from std::string to const char* exists.

View 5 Replies View Related

C :: File Handling Sorting

Mar 6, 2015

I am accepting the word from user and arranging it in ascending order like in dictionary in a file . I am doing this by comparing the user entered word from existing word in the file . All the word which is smaller then user entered word is copied to another file "temp.txt" , then the user word is printed and then the remaining word ( which are larger) from "abc.txt" to "temp.txt" . But program close as soon as i enter the second word

Code:
#include<stdio.h>
#include<string.h>
main() {
FILE *fp,*ft ;
fp = fopen("abc.txt","r+");
ft = fopen("temp.txt","r+");

[Code]....

Both file are already created before /

View 2 Replies View Related

C :: Sorting Has To Be Based On Int Field

Feb 16, 2013

I have a file which has records with 2 fields--one int and one float..what is the best way to sort it?

The sorting has to be based on the int field(the first field) (each time the program runs the file might end up with some hundreds of records).

View 13 Replies View Related

C :: Selection Sorting A 2D Array

Feb 13, 2013

Selection sorting a 2D array . Let's say i have an array like

1 2 3 4 //4 elements
1 2 // 2 elements
1 2 3 4 5 //5 elements
1 2 3 //3 elements
1 //1 element

And I want to do a selection sort it in descending order which the row with 5 elements will come first then 4 then 3 and so on. So that it would look like this

1 2 3 4 5
1 2 3 4
1 2 3
1 2
1

Code:
void selectionSortDescending(int list[MAX_ROW], int size){
int temp;
int walk;
int curr;
int large; // index of the largest element

for (walk = 0; walk < size - 1; walk++)

[Code] ....

View 7 Replies View Related

C :: Sorting Structures In Database

Nov 26, 2013

A user is supposed to enter student name, id, and grade then sort them by name, id, or grade. I managed to get it to sort by name and id correctly, but not by grade.

Code] .....

#include <string.h>
#include <stdio.h>
struct student{
int student_id;
char name[30];
char grade[15];

[Code] ....

View 8 Replies View Related

C :: Sorting Array Of Size 10

Nov 18, 2013

I am trying to sort an array of size 10. If I was given:

Code: int List[Size] = {29, 11,12,10,3,26,13,15,19,2};

I need the program to sort all the odd integers and put the even integers to the back of the array. Like so:

Index: 0 1 2 3 4 5 6 7 8 9
Value:29 11 3 13 15 19 12 10 26 2

And it returns the number of even integers in the List. In this case it returns 4. All I am given to start with is

Code:
int evensToRead(int* const List, const int Size){
//body
}

View 1 Replies View Related

C :: Sorting Words Alphabetically

Dec 10, 2014

I've tried searching for answers around the web but everyone is using syntax that We haven't been taught before in class yet. I understand that the string library is probably the most efficient way of doing this but is there a way without using that library? Like using if, for, while etc. instead?

I've been told that using anything else other than the string syntax is far to complex but I think the more complex it is the more I will understand it.

View 9 Replies View Related

C :: Sorting 2D Array By Column

Oct 24, 2013

i have a matrix containing a lot of points and each point has its coordinates x and y. That is a nx2 size array. I want to sort it according to the first column ascending, with x coordinates. For points that have the same x coord i would like to sort according to y coord. Here is what i did and i cannot get a good result.

Code:

#include <stdio.h>
#include <stdlib.h>
int main(){
int a[5][2] = {{1,0}, {4,2}, {2,4}, {8,6},{4,8}};
int temp=0;
int i=0;
int j=0;

[Code]...

View 4 Replies View Related

C++ :: New Ordering System Sorting

Aug 2, 2014

Here's the objective of the program: "Instead of using ABCDEFGHIJ to order letters use DCBAJIHGF go order. The program should determine which 4-letter word is larger of two based on this new ordering system."

Not even sure how to start with this problem , how would I go about defining my own ordering system?

View 1 Replies View Related

C++ :: Sorting Numbers From File

Apr 6, 2013

I have been working on this program for days now and for some reason my program will not write to my third file. It will call all of the integers that I need it to call but it will not write them out to a file. How to use my loop correctly.

#include <iostream>
#include <fstream>
using namespace std;

int file1();
int file2();
int file3(int);

[Code] ....

View 10 Replies View Related

C++ :: Sorting Of Object In A Vector

Oct 24, 2013

I'm new to C++ especially vectors.. I've a question regarding sorting of object in a vector.. My object consists of x,y and civ. so I would like to know how do I sort the value of the civ in an descending order but at the same time retaining the value of x and y attached to it..

original
X: 4 Y: 5 CIV: 10
X: 3 Y: 2 CIV: 30
X: 3 Y: 3 CIV: 05

sorted
X: 3 Y: 2 CIV: 30
X: 4 Y: 5 CIV: 10
X: 3 Y: 3 CIV: 05

missionplan.cpp
void MissionPlan::topfives() {
stable_sort (topfive.begin(), topfive.end());
pointtwoD = topfive.at(i);
pointtwoD.displayPointdata();
}

View 2 Replies View Related

C++ :: Sorting 2D Points Clockwise

Nov 7, 2013

I have 2D points written in {x1, y1, x2, y2, x3, y3, .....}

#include <iostream>
#include <vector>
#include <math.h>
#include <algorithm>
using namespace std;
int main() {
vector<double> vec;
vector<double> vec_ordered;

[Code] .....

Result.

6 4
6 3
6 2
6 1
5 5
5 1
4 4
4 1
3 3
3 1
2 2
2 1
1 1

which wrong result

I wanted to make

6 3
6 2
6 1
5 1
4 1
3 1
2 1
1 1
2 2
3 3
4 4
5 5

View 6 Replies View Related

C++ :: Sorting A Structure Array

Jan 22, 2013

i need to print the names as they appear in the original file, print the info of the person with the highest distance, print the info sorted by ascending ID number, and print sorted by name alphabetically. the first two parts work fine but sorting by ID and Name dont work.

#include <iostream>
#include <fstream>
#include <stdlib.h>
#include <string.h>
#include <math.h>

[code]....

View 1 Replies View Related

C++ :: Sorting Car Names According To Their Mileage

Feb 24, 2013

All I wanted to do is to sort the car names according to their mileage. And display the output with their car names. This is what I've made

#include<iostream>
#include<conio.h>
#include<string>
using namespace std;
int j;
class car

[Code].....

I need to take 5 car details and sort them according to their Mileage..

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved