0
votes
3answers
64 views
Tournament graph
A tournament is a directed graph (digraph) obtained by assigning a direction for each edge in an undirected complete graph. That is, it is a directed graph in which every pair of vertices is connected …
-3
votes
2answers
114 views
not sure whats wrong can anyone help [closed]
/*********************************************************************
*Program Name : CSC 110 - 003 Program 3 Histogram
*Author : Anthony Small
*Due Date : DEC/03/09
*Course/Section …
0
votes
1answer
144 views
How do I find the derivative of sin(x) using recursion?
How do I find the derivative of sin(x) where x could be any value e.g. 1,2,3 using recursion?
0
votes
2answers
51 views
Why does the call to bsearch() crash the presented program?
Hi,
I have an unsorted dictionary file named "dict.txt".
I have managed to put the words of the file in an array and the qsort() I use also seems to be working just fine (That is, the array is …
0
votes
3answers
296 views
String Problem in C++
I have problem in string maniputation with c++.
The Rule : if the same 'word' is repeated from sentences or paragraph i want it to become an integer.
Please help me ?!
example
input : we prefer …
-4
votes
2answers
80 views
Redefining and overriding a method [closed]
Please explain to me the difference between redefining a method and overriding a method. I need an answer to write in exam, so please be descriptive...
thanks
0
votes
1answer
39 views
Frequency based sorting
You are given an array of integers and you have sort those integers based on the frequency of
their occurrence. Design an algorithm and analyze its time complexity. In case of ties the smaller
number …
1
vote
5answers
110 views
Java Checking number months
I think I figure out what question I am trying to ask I dont want get(Calendar.MONTH) I want the month not to be greater than the last caldendar month that is why i am doing month -1, i realize that …
1
vote
2answers
83 views
Water Jug problem in Die Hard 3 into a graph
Hi, im not too sure how to implement this...
I need to create a weighted directed graph based on the water jug problem from the movie Die Hard 3 …
51
votes
23answers
12k views
How do I calculate someone’s age in C#?
Given a DateTime representing their birthday, how do I calculate someone's age?
-4
votes
0answers
109 views
Finding Hidden Elements in an image
I have a two RAW images, a string of text, and a logo. The text and the logo are hidden by applying histogram transformation , now i need to extract the logo and text.. how can i do it in matlab, can …
0
votes
8answers
124 views
frequency analysis algorithm
Hello everyone.
I want to write a java program that searches through a cipher text and returns a frequency count of the characters in the cipher, for example the cipher:
"jshddllpkeldldwgbdpked" will …
-1
votes
3answers
119 views
Why do people rage against homework questions so much [closed]
Why do people rage against homework questions so much? Everywhere had to start from somewhere and most people needed help at some point so why do people act superior to people who want to learn?
-1
votes
5answers
130 views
Number of days in any month
JavaScript function that accepts a number from 1 - 12 representing the months of the year, and then returns the number of days in that month?
0
votes
6answers
125 views
Breadth first search, and A* search in a graph?
I understand how to use a breadth first search and A* in a tree structure, but given the following graph, how would it be implemented? In other words, how would the search traverse the graph? S is the …
