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
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for dan.gerald

I am having issues on how to assign stock names and respective price on the board positions in a monopoly game in C#, SO far i have only few lines of codes, I need some assistance. stockname.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace WindowsFormsApplication1 { class stock …

Member Avatar for ddanbe
0
127
Member Avatar for dan.gerald

I am having problem on removing root, moving the lastnode to the new root and applying the downheap. Here is my code snippet #include <iostream> #include "heap.h" heap::heap() { data=new myvector<heapData> (10); size=0; heapData item; item.key=0; item.data=0; insertItem(item); } heap::~heap() { delete data; }; void heap::insertItem(heapData item) { data->insertAtRank(size,item); size++; …

Member Avatar for buterous
0
492
Member Avatar for dan.gerald

I am trying implementing a vector ADT by means of an extandable array used in circular fashion. So now I want to apply the doubling strategy to double the current size of array Wheenever the full exception happens, by using a template to make the vector work here are my …

Member Avatar for deceptikon
0
565
Member Avatar for dan.gerald

I am trying to write a program that will test for the birthday paradox. I need to run a series of experiments on randomly generated birthdays, which test this paradox for n = 5, 10, 15, 20,...,100 (n = number of people in any given room). I need to run …

Member Avatar for dan.gerald
0
499
Member Avatar for dan.gerald

Hello members, i need your help on this: The birthday paradox says that the probability that two people in a room will have the same birthday (month and date only) is more than half as long as n, the number of people in the room, is more than 23. This …

Member Avatar for deceptikon
0
190