Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 12
Member Avatar for Theanonymous

Hi I need some help with this problem Complete the implementation of linear-time algorithm for Stock Span Problem already I have this code : [CODE]for i=0 to n-1 do done < false while not(D.isEmpty() or done) do if P[i]>=P[D.top()] then D.pop() else done < true if D.isEmpty()then h< -1 else …

Member Avatar for jyotiswaroopr
0
451
Member Avatar for Theanonymous

I need to write a program that calculates the squares of all numbers that are contained in a file of floating point numbers. The obtained new numbers form a new file. Like this : if the file contains the numbers 1, 2.5, 0.1, the numbers 1, 6.25 and 0.01 form …

Member Avatar for finchh
0
290
Member Avatar for Theanonymous

Hi I have to implement this code parts [URL="http://www.daniweb.com/forums/attachment.php?attachmentid=18567&stc=1&d=1292681569"]first code[/URL] [URL="http://www.daniweb.com/forums/attachment.php?attachmentid=18568&stc=1&d=1292681569"] second code[/URL] [URL="http://www.daniweb.com/forums/attachment.php?attachmentid=18569&stc=1&d=1292681569"]third code[/URL] at my code for linkedbinary tree [CODE]#include <iostream> using namespace std; template <typename Object> class LinkedBinaryTree { protected: struct Node { Object element; Node* parent; Node* left; Node* right; Node() : element(Object()) { parent = …

0
66
Member Avatar for Theanonymous

Hi this is my problem Define a class Circle that stores the center and radius of a circle, by keeping the numbers in a dynamically allocated array of doubles. Supply the "big three" memory management functions. Use this class to demonstrate (a) the difference between initialization Circle s; Circle t …

Member Avatar for Theanonymous
0
110
Member Avatar for Theanonymous

hi i need a urgent help for a program that i cant make and this is : Write a program that implements a game, to teach arithmetic to little children. The program tests addition and subtraction. In level 1 it tests only addition of numbers less than 10 whose sum …

Member Avatar for Theanonymous
0
111