49,755 Topics

Member Avatar for
Member Avatar for johny112

this is the exact problem: Write a routine to sort the ten-number list shown in ‘Sample Screen Output’ below, and then make the following modifications to improve the performance of the bubble sort: Sample Screen Output Data items in original order 2 6 4 8 10 12 89 68 45 …

Member Avatar for WaltP
0
93
Member Avatar for rayy

i want to write a c++(console) programme for a voting system that accepts names of candidates and the votes they had and sort these votes in descending order to show the winner. how do i go about it. thanks. this is the what i have been able to do so …

Member Avatar for Nick Evan
0
82
Member Avatar for Nidaa87

radix sort: an example : Original, unsorted list: 170, 45, 75, 90, 2, 24, 802, 66 Sorting by least significant digit (1s place) gives: 170, 90, 2, 802, 24, 45, 75, 66 Notice that we keep 2 before 802, because 2 occurred before 802 in the original list, and similarly …

Member Avatar for Nidaa87
0
92
Member Avatar for bpage

Hi, I am trying to do a pretty basic project for my computer science class. The part that is giving me trouble is where the user needs to input every letter of the alphabet in a random order but only each letter can be inputted once. I was wondering if …

Member Avatar for bpage
0
156
Member Avatar for driplet

there is a intrinsic function, ichar(C), to convert character to a numerical value (ASCII?) in FORTRAN. Can any one tell me a similar function in C++?

Member Avatar for Ancient Dragon
0
87
Member Avatar for mugenoid

I am doing a game and i need to refresh the screen to make it less messy, Can anyone teach me how to do plz?

Member Avatar for FireNet
0
713
Member Avatar for mr.cool

in my c++ class we have to make a game and i need some ideas on what to make. the only thing i have learned is: random numbers, ifs, switch case, while loop, for loop, some character string functions of cin.get and cin.ignore, also declaring a character string, data formatting …

Member Avatar for ithelp
0
88
Member Avatar for tonyaim83

Hi My input file is as below. AXY,21,23,12,334,34 VBE,32,34,32,43,34 AXX,32,34,45,32,45 AXY,23,43,323,122 VBE,23,3,323,21,121 Now here the first token designate the nodal name. Now what i want is to create a set of file name AXY_info.txt,VBE_info.txt,AXX_info.txt and here file name designating the nodal name and each file should contain their respective values. …

Member Avatar for WaltP
0
163
Member Avatar for hpr12951

Could ppl please fix my 2 codings to "template version". I spend so much time understanding template, but still hard for me! Please help~ thanks to all [CODE]#include <iostream> using std::cin; using std::cout; using std::endl; const int ARRAY_SIZE = 10; void search(const int a[], int lowEnd, int highEnd, int key, …

Member Avatar for hpr12951
0
120
Member Avatar for guccica

Hi all, would need your help on unzipping message which is zipped with java.util.zip. For your information my module was written in c++. Currently i am trying to unzip with zlib, how ever it failed with "Z_DATA_ERROR" error. Please advice.. thanks a lot. regards brandon

Member Avatar for guccica
0
117
Member Avatar for death_oclock

I am trying to write an openGL application from a tutorial I found and tried to copy it as accurately as possible without just copy+pasting it, so I can actually learn the code. The source file from the tutorial compiles and runs perfectly, but my code fails at a call …

0
127
Member Avatar for sbenware

I have a binary tree program that is trying to retrieve a name. I've already inserted names into the tree correctly and can see this at output. Now I'm trying to check for a name in the tree and calling that input "key". My program wants to take that key …

Member Avatar for sbenware
0
152
Member Avatar for #include<DAN.h>

Does anyone have a list or know how I can get a list of the bit addresses of keys used in the getch (); fuction. For example: F1 is 59 F2 is 60 F3 is 61 F4 is 62 F5 is 63 etc. I'm pretty sure that this is the …

Member Avatar for guy40az
0
121
Member Avatar for talk2tisa

I am attempting to complete a homework assignment. The progam basically requires input from the keyboard into an array and then to perform some calculations on the input information. I believe I can do the calculations, but I cannot figure out how to get the input into the array. The …

Member Avatar for talk2tisa
0
108
Member Avatar for robotnixon

So below is a working program I wrote that mimics a rolodex. It stores the information on a text file with the number of cards listed at the top of the file and one card per line like this: last first phone email last first phone email ... I'm currently …

Member Avatar for robotnixon
0
117
Member Avatar for guy40az
Member Avatar for Ancient Dragon
0
97
Member Avatar for jacknight

Why does (start+last)/2 work to calculate the midpoint while start+(last-start)/2 does? To be more specific, I put the contents of a binary tree into an array, sorted it, destroyed the old tree, and plan to rebuild the new one. I know that start+(last-start)/2 as a midpoint calculation works correctly. My …

Member Avatar for Narue
0
146
Member Avatar for Max_Payne

[b]***Header Files:[/b] [b]Point.h[/b] [code=c++] #pragma once #include <iostream> using namespace std; class Point { private: int x; int y; public: Point(void); Point( int x, int y ); Point( const Point &xPoint ); ~Point(void); void setX( int x ); int getX() const; void setY( int y ); int getY() const; Point …

Member Avatar for Max_Payne
0
116
Member Avatar for Biro

Hey, I have started working with I/O file streams using my 'problem solving with c++' book, I am not sure where the .dat file goes in MS Visual C++ or how to make it for that matter... Also is this code correct? I am getting strange errors... I am trying …

Member Avatar for Salem
0
891
Member Avatar for hugvc333

Hii.... Please help me... The use of inline function in C++ is usual.But What is the advantage of using 'inline' function ? Can a function be forced as inline?

Member Avatar for Jishnu
0
99
Member Avatar for ravisen22

Hey, Me too have some doubts. When do we need to use forward declaration? Can anybody show one example?

Member Avatar for Jishnu
0
63
Member Avatar for samtben111

Hii, What is the mutable keyword? When do we use this mutable keyword? what are the differences between a pointer and reference?

Member Avatar for Ancient Dragon
0
67
Member Avatar for atiti.m001

Hello guys, Mention the usage of the scope resolution operator? show one example . What is the const keyword ? Illustrate its various uses?

Member Avatar for Ancient Dragon
0
44
Member Avatar for tonyaim83

Hi. Hi My program takes the user input of the location where the directory need to be created. I found Windows API: CreateDirectory() but then for Linux i need to write some other function. Is their any function which can work for both operating systems. Kindly help

Member Avatar for Ancient Dragon
0
96
Member Avatar for tonyaim83

Hi How should i identify the operating system on which my program is running in c++. Kindly help

Member Avatar for Salem
0
148
Member Avatar for jitterson
Member Avatar for jasimp
0
88
Member Avatar for henpecked1

I've just started a C++ class so I am a total beginner at this. I am having a problem figuring out how to pass by reference, and pass by value using the enum data type. The data types are as follows: enum suits {hearts, spades, diamonds, clubs} enum cardValues{two=2, three, …

Member Avatar for henpecked1
0
125
Member Avatar for fith

Im am making my first game and one of the files just won't compile. I keep getting this error whenever I try to compile this file (this is only the problem part): [code] if (answer[0] == 'y') { if (player->GetGold >= 10) // PROBLEM { player->SpendGold(10); cout << "You find …

Member Avatar for WaltP
0
355
Member Avatar for warpstar

Hey, just wanna say thanks in advance with the help. [code] void backwards(struct node *headp){ int n=0; /* length */ int i,j; /* counters */ struct node *p=headp; /* find length */ while( p->next !=NULL ) { n++; p=p->next; } printf(“%d\n”, p->number); /* print TAIL */ for(i=n-1; i>=1; i--) { …

Member Avatar for vmanes
0
92
Member Avatar for planktonfist

I'm wiring a program where I have a file with city, state, population size laid out as follows; 24 El Paso, TX 577415 Indianapolis, IN 783612 Detroit, MI 925051 Fort Worth, TX 567516 Los Angeles, CA 3798981 Washington, DC 570898 etc... with 24 being the number of elements in the …

Member Avatar for planktonfist
0
121

The End.