Tagged Questions
1
vote
1answer
170 views
Build a specific leftist tree?
I was practicing leftist trees and saw an example of min height-biased leftist tree on the textbook:
2
/ \
7 50
/ /
11 80
/
13
The question is, can I use only ...
0
votes
5answers
744 views
Example of a deterministic algorithm? [closed]
Good evening I was wondering if someone could please provide me with a simple pseudocode example of a deterministic algorithm... I will greatly appreciate it and surely give you points!!. thanks
-1
votes
1answer
344 views
How to store my map in C?
I'm a C newbie.
I want to my string "aaaabbbbbbb" to a kind of map
array1[0][0] = (a,4)
array1[1][0] = (b,7)
and compare this string "4444bbbbbbb" and make the other map and find same element and ...
8
votes
4answers
2k views
An algorithm to calculate probability of a sum of the results happening
The algorithm I'm talking about using would allow you to present it with x number of items with each having a range of a to b with the result being y. I would like to have an algorithm which would, ...