1
vote
1answer
20 views
Multidimensional Collections for a (CS) Graph Class Interface in C#?
For jollies I'm trying to implement a graph data structure as an interface, so that I can implement graph classes either as adjacency lists (lists of lists of edges) or as adjacency matrices ( a 2 …
0
votes
3answers
127 views
What kind of Maths should a student Computer Science be familiar with?
I am considering go back to College to get a Master Degree on Computer Science in 2011.
As I have been a programmer who had been building all kinds of software, I don't think any thing related to …
1
vote
3answers
73 views
What are some graduate degrees that would complement a bachelors in CS? [closed]
I'm about to graduate with a Bachelors of Science in Computer Science and I'm starting to look at graduate programs.
What are some graduate degrees that would complement my undergraduate degree in …
1
vote
1answer
44 views
Euclidean distance vs Pearson correlation vs cosine similarity?
Their goals are all the same: to find similar vectors.
Which do you use in which situation? (any practical examples?)
0
votes
2answers
26 views
floating points: IEEE based, but non-standard conversion of bit values to binary
hey!
So here is what we have, a custom IEEE based setup:
Consider a five-bit floating
representation based on the IEEE
floating point format with 1 sign bit,
two exponent bits and 2 …
5
votes
4answers
307 views
Are there functions in Python?
Or is everything a method?
Since everything is an object, a
def whatever:
is just a method of that file.py, right?
5
votes
7answers
161 views
Building a game, need a language with strongly supported first class functions
I'm building an educational game which, through it's modularity, allows for teaching students how to program. It's essentially a generic card game which can easily be modified.
The backbone of the …
2
votes
9answers
159 views
A phrase as catchy as ‘Feature Creep’ but for underestimated projects
I'm needing a term or established term to represent a phenomenon our company currently calls a 'Black Hole': a project that takes magnitudes longer than estimated, yet we're already sucked in and HAVE …
9
votes
4answers
150 views
Exactly what is the difference between a “closure” and a “block”?
I've found that lots of people use the words closure and block interchangeably. Most of these people can't explain what they're talking about.
Some Java programmers (even ones from really expensive …
1
vote
6answers
120 views
What does the ‘Enterprise Ready’ mean?
What do you mean by saying that something is 'Enterprise Ready'?
0
votes
3answers
25 views
Transitioning from Associates CIS to Bachelor’s CS
I realize there are a bunch of questions regarding CIS vs CS degrees, but I didn't really find anything relating to my specific situation.
I am in the middle of my second year of an Associates Degree …
0
votes
1answer
19 views
calculating max and min expressible values for floating point number rep
Hi,
i want to figure out why expressible numbers in the IEEE floating point standard is 10^+38 - -10^38 (and similarly for the +ve). most textbooks just make this statement of fact, im grappling with …
0
votes
2answers
40 views
How do you detect outliers on multivariate data?
I am trying to do a regression problem but I have 3 independent variables and not 1 so it is hard to detect outliers from a scatter graph. Any suggestions?
1
vote
5answers
142 views
What is an irrational number relevant to computer science?
For a project we're working on right now, we want to pull a Donald Knuth and have a version number that converged towards some irrational number. However, we don't want to use something boring like …
-2
votes
16answers
890 views
Which are unsolvable problems in programming world?
Travelling salesman problem is said to be practically "unsolvable" when number of nodes increase.
What other programming problems are considered unsolvable?
