473,402 Members | 2,050 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

help needed c++

hi
this hw have four files:
1. for the main program
2. listp.cpp (the source file)
3. listp.h (the header file)
4. exception.h
if there is anybody who could help me with this hw i really appreciate
his help.
thanks for anybody in advance

#include <iostream>

#include <limits.h>

using std::cin;
using std::cout;
using std::endl;
using namespace std;

#define NumCities 5
#define MaxFib 100

#include "Exceptions.h"
#include "ListP.h"
#include "ListP.cpp"

void List::enterList()
// Prompt the user to enter integer values from the keyboard. Each
// value is inserted into the list. When the user enters -1, input
// from the keyboard stops. Adds the new values to the beginning of
// the current contents of list, if any.
{
ListItemType val;
int count = 1;

do
{
cout << "Enter value (-1 to end): " << count << endl;
cin >> val;

if (val != -1)
insert(count, val);

count++;
}
while (val != -1);
}

int fib(int n)
// Returns the nth Fibonacci number. The result is computed
// recursively. Does no error checking. What is the largest number
// you can compute this way?

int fib2(int n, int F[])
// Returns the nth Fibonacci number. The result is computed
// recursively. Does not compute any number more than once and uses
// the array F[] to store previously computed numbers. Does no error
// checking. What is the largest number you can compute this way?

void testFib()
// Helper function that prompts the user to enter an integer n, and
// prints the nth Fibonacci number.
{
int n;

cout << "enter n: " << endl;
cin >> n;
cout << fib(n) << endl;
}

void testFib2()
// Helper function that prompts the user to enter an integer n, and
// prints the nth Fibonnaci number.
{
int F[MaxFib];
int n;

for (int i = 0; i < MaxFib; i++)
F[i] = -1;

cout << "enter n: " << endl;
cin >> n;
cout << fib2(n,F) << endl;
}

int sum (int list[], int left, int right)
// Returns the sum of the numbers in array list, starting at index
// left and ending at index right. The sum is computed recursively.

void testSum()
// Function to test the sum function
{
int list[99999];
int i = 0;
int x;

cout << "Enter numbers, enter -1 to stop" << endl;

do
{
cin >> x;
if (x != -1)
list[i++] = x;
} while (x != -1);

cout << "The sum is " << sum(list,0,i-1) << endl;
cout << endl;
}

int multiply(int m, int n)
// Returns the product of m and n. The result is computed
// recursively. Assumes that m and n are positive integers, uses no
// loops or multiplication, and does no error checking.

void testMultiply()
// Function to test the multiply function.
{
int x,y;

cout << "Enter a number:" << endl;
cin >> x;
cout << "Enter a number:" << endl;
cin >> y;

cout << "The product of " << x << " and " << y << " is " <<
multiply(x,y) << endl;
}

bool findPathRecursive(int originCity, int destinationCity, bool
visited[],
int edge[][NumCities])
// Returns true if a path from originCity to destinationCity exists in
// the graph defined by edge. Paths are found using the following
// recursive algorithm: to find a path from city i to city j, check
// whether there is a path from any cities k, which are neighbors of
// i, to j. If a path exists, prints it in any order. This function
// does not use any stacks or queues.

void testFindPathRecursive()
// Helper function that prompts the user to enter source and
// destination cities, and then uses findPathRecursive to determine if
// a path exists in the graph from source to destination.
{
int edge[NumCities][NumCities] = {{0,1,0,0,0},
{0,0,1,1,0},
{0,0,0,0,1},
{0,1,0,0,0},
{0,0,0,0,0}};

int originCity, destinationCity, i;

bool visited[NumCities];

for (i = 0; i < NumCities; i++)
visited[i] = false;

cout << "Enter origin city: ";
cin >> originCity;

cout << "Enter destination city: ";
cin >> destinationCity;

if (!findPathRecursive(originCity, destinationCity, visited, edge))
cout << "No path found" << endl;
}

bool subsetSum(List aList, int sum)
// Return true if some subset of the integers stored in aList add up
// to sum. Uses recursion.

void testSubsetSum()
{
List aList;
int num;

cout << "Enter list values" << endl;
aList.enterList();
cout << "Enter a target sum" << endl;
cin >> num;

cout << "Result: " << subsetSum(aList, num) << endl;
}
int main()
{
int choice;

do
{
cout << "1. fib" << endl;
cout << "2. fib2" << endl;
cout << "3. multiply" << endl;
cout << "4. sum" << endl;
cout << "5. findPathRecursive" << endl;
cout << "6. subsetSum" << endl;
cout << "Enter a number, or -1 to exit: ";

cin >> choice;

switch (choice)
{
case 1:
testFib();
break;
case 2:
testFib2();
break;
case 3:
testMultiply();
break;
case 4:
testSum();
break;
case 5:
testFindPathRecursive();
break;
case 6:
testSubsetSum();
break;
}
} while (choice != -1);
}

// ************************************************** *******
// Header file ListP.h for the ADT list.
// Pointer-based implementation.
// ************************************************** *******

// Must define ListItemType before compilation

#ifndef ListP_h
#define ListP_h

#include "Exceptions.h"

typedef int ListItemType;

class List
{
public:

// constructors and destructor:
List(); // default constructor
List(const List& aList); // copy constructor
~List(); // destructor

// list operations:
bool isEmpty() const;
int getLength() const;

void insert(int index, ListItemType newItem)
throw(ListIndexOutOfRangeException, ListException);

void remove(int index)
throw(ListIndexOutOfRangeException);

void retrieve(int index, ListItemType& dataItem) const
throw(ListIndexOutOfRangeException);

void enterList();
private:

struct ListNode // a node on the list
{
ListItemType item; // a data item on the list
ListNode *next; // pointer to next node
}; // end struct

int size; // number of items in list
ListNode *head; // pointer to linked list of items

ListNode *find(int index) const;
// Returns a pointer to the index-th node
// in the linked list.

}; // end class
// End of header file.

#endif

// ************************************************** *******
// Implementation file ListP.cpp for the ADT list.
// Pointer-based implementation.
// ************************************************** *******

#include "ListP.h"
#include "Exceptions.h"

List::List(): size(0), head(NULL)
{
} // end default constructor

List::List(const List& aList): size(aList.size)
{
if (aList.head == NULL)
head = NULL; // original list is empty
else
{
// copy first node
head = new ListNode;
assert(head != NULL); // check allocation
head->item = aList.head->item;

// copy rest of list
ListNode *newPtr = head; // new list pointer

// newPtr points to last node in new list
// origPtr points to nodes in original list

for (ListNode *origPtr = aList.head->next;
origPtr != NULL;
origPtr = origPtr->next)
{
newPtr->next = new ListNode;
assert(newPtr->next != NULL);
newPtr = newPtr->next;
newPtr->item = origPtr->item;
} // end for

newPtr->next = NULL;
} // end if
} // end copy constructor

List::~List()
{
while (!isEmpty())
remove(1);
} // end destructor

bool List::isEmpty() const
{
return bool(size == 0);
} // end isEmpty

int List::getLength() const
{
return size;
} // end getLength

List::ListNode *List::find(int index) const
// --------------------------------------------------
// Locates a specified node in a linked list.
// Precondition: index is the number of the
// desired node.
// Postcondition: Returns a pointer to the desired
// node. If index < 1 or index > the number of
// nodes in the list, returns NULL.
// --------------------------------------------------
{
if ( (index < 1) || (index > getLength()) )
return NULL;

else // count from the beginning of the list
{

ListNode *cur = head;

for (int skip = 1; skip < index; ++skip)
cur = cur->next;

return cur;
} // end if
} // end find

void List::retrieve(int index,
ListItemType& dataItem) const
throw (ListIndexOutOfRangeException)
{
if ((index < 1) || (index > getLength()))
throw ListIndexOutOfRangeException(
"ListOutOfRangeException: retrieve index out of range");
else
{
// get pointer to node, then data in node
ListNode *cur = find(index);
dataItem = cur->item;
} // end if
} // end retrieve
void List::insert(int index, ListItemType newItem)
throw(ListIndexOutOfRangeException, ListException)
{
int newLength = getLength() + 1;

if ((index < 1) || (index > newLength))
throw ListIndexOutOfRangeException(
"ListOutOfRangeException: insert index out of range");
else
{
// create new node and place newItem in it
ListNode *newPtr = new ListNode;

if (newPtr == NULL)
throw ListException(
"ListException: insert cannot allocate memory");
else
{
size = newLength;
newPtr->item = newItem;

// attach new node to list
if (index == 1)
{
// insert new node at beginning of list
newPtr->next = head;
head = newPtr;
}
else
{
ListNode *prev = find(index-1);
// insert new node after node
// to which prev points
newPtr->next = prev->next;
prev->next = newPtr;
} // end if
} // end if
} // end if
} // end insert
void List::remove(int index)
throw(ListIndexOutOfRangeException)
{
ListNode *cur;

if ((index < 1) || (index > getLength()))
throw ListIndexOutOfRangeException(
"ListOutOfRangeException: remove index out of range");
else
{
--size;
if (index == 1)
{
// delete the first node from the list
cur = head; // save pointer to node
head = head->next;
}

else
{
ListNode *prev = find(index-1);
// delete the node after the
// node to which prev points
cur = prev->next; // save pointer to node
prev->next = cur->next;
} // end if

// return node to system
cur->next = NULL;
delete cur;
cur = NULL;
} // end if
} // end remove
// ************************************************** *******
// File Exceptions.h containing declarations of List and Stack
// Exceptions.
// ************************************************** *******

#ifndef Exceptions_h
#define Exceptions_h

#include <string>
#include <exception>
using namespace std;

class ListException
{
public:
ListException(const string &m = "")
{ message = m;}
string what() {return message;}
private:
string message;
}; // end ListException

class ListIndexOutOfRangeException
{
public:
ListIndexOutOfRangeException(const string &m = "")
{ message = m;}
string what() {return message;}
private:
string message;
}; // end ListIndexOutOfRangeException

class StackException
{
public:
StackException(const string & m="")
{ message = m;}
string what() {return message;}
private:
string message;
}; // end StackException

class QueueException
{
public:
QueueException(const string & m="")
{ message = m;}
string what() {return message;}
private:
string message;
}; // end QueueException

#endif

Jul 23 '05 #1
5 2067
jh*******@gmail.com wrote:
hi
this hw have four files:
1. for the main program
2. listp.cpp (the source file)
3. listp.h (the header file)
4. exception.h
if there is anybody who could help me with this hw i really appreciate
his help.


What kind of help are you looking for? You need to define the problem
you're trying to solve. Please don't make us guess it from the code
you posted (it's good that you posted it, BTW).

V
Jul 23 '05 #2
hi
iam sorry for not mentioning but iam trying to find someone to give me
some solution because all the files are correct but the program.cpp
that should be fixed
thank you

Jul 23 '05 #3
jhon02148 wrote:

hi
iam sorry for not mentioning but iam trying to find someone to give me
some solution because all the files are correct but the program.cpp
that should be fixed


Fixed because of *what*?

What happens:
Do you get a compiler error?
If yes, which one and at which line number

Does the program compile, but does it crash during runtime?
In that case, fire up your debugger and figure out *where*
it crashed. Once you know *where* it crashes, the time has
come to think of reasons *why* it crashes at that position.
--
Karl Heinz Buchegger
kb******@gascad.at
Jul 23 '05 #4
the only problem that i have. i couldnt figure out how to start this
function. can you please help me out.
thank you
bool subsetSum(List aList, int sum)
// Return true if some subset of the integers stored in aList add up
// to sum. Uses recursion.

void testSubsetSum()
{
List aList;
int num;
cout << "Enter list values" << endl;
aList.enterList();
cout << "Enter a target sum" << endl;
cin >> num;
cout << "Result: " << subsetSum(aList, num) << endl;

}

Jul 23 '05 #5
jhon02148 wrote:

the only problem that i have. i couldnt figure out how to start this
function. can you please help me out.
thank you
bool subsetSum(List aList, int sum)
// Return true if some subset of the integers stored in aList add up
// to sum. Uses recursion.


Don't start with programming until you know how to do the
very same with paper and pencil.

Say I give you that list

6 8 2 10 7

And then I ask: Is there a subset in this list that sums
up to 18?
What would be your answer?
Why? How did you come to that conclusion? What steps
did you take? (Note: The answer: "Because I looked at it
and saw it" is not an allowed. You need to give a cookbook
that even the dumbest person on earth can follow and get
to the same conclusion then you).

Note: If a recursion is required with lists, it is often
a good idea, to divide the list into 2 parts:
* the first element
* the rest of the list
The recursion then operates on the 'rest of list part'.

Hint2: For a moment forget about the 'sum of to something
part'. Can you write a (recursive function) that generates
all possible subsets of a given list? If you can do that,
the extension to 'does one of the subsets sum up to x'
should be fairly easy.

--
Karl Heinz Buchegger
kb******@gascad.at
Jul 23 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

28
by: stu_gots | last post by:
I have been losing sleep over this puzzle, and I'm convinced my train of thought is heading in the wrong direction. It is difficult to explain my circumstances, so I will present an identical...
7
by: ChadDiesel | last post by:
Hello everyone, I'm having a problem with Access that I need some help with. The short version is, I want to print a list of parts and part quantities that belong to a certain part group---One...
7
by: Tina | last post by:
I have an asp project that has 144 aspx/ascx pages, most with large code-behind files. Recently my dev box has been straining and taking long times to reneder the pages in the dev environment. ...
10
by: Mae Lim | last post by:
Dear all, I'm new to C# WebServices. I compile the WebService project it return no errors "Build: 1 succeeded, 0 failed, 0 skipped". Basically I have 2 WebMethod, when I try to invoke the...
2
by: trihanhcie | last post by:
I m currently working on a Unix server with a fedora 3 as an os My current version of mysql is 3.23.58. I'd like to upgrade the version to 5.0.18. After downloading from MYSQL.COM the package on...
2
by: Steve K | last post by:
I got a bit of a problem I like some help on. I'm designing an online training module for people that work in food processing plants. This is my target audience. These workers have little or no...
3
by: Kitana907 | last post by:
Hi- I'm attempting to write a module that uses and updates info from two tables and does the following: Opens the recordset of a table called "tblstoreinv" If the Needed Field in the...
9
by: smartbei | last post by:
Hello, I am a newbie with python, though I am having a lot of fun using it. Here is one of the excersizes I am trying to complete: the program is supposed to find the coin combination so that with...
2
by: rookiejavadude | last post by:
I'm have most of my java script done but can not figure out how to add a few buttons. I need to add a delete and add buttong to my existing java program. Not sure were to add it on how. Can anyone...
32
by: =?Utf-8?B?U2l2?= | last post by:
I have a form that I programmatically generate some check boxes and labels on. Later on when I want to draw the form with different data I want to clear the previously created items and then put...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.