0
votes
3answers
36 views
Implementation Detail for Graph Analysis Algorithms
Let's say I have a graph with "heavy" nodes, that is each node is an object that is already carrying a lot of data. I want to do a graph transformation that requires me to calcula …
1
vote
4answers
135 views
Can this breadth-first search be made faster?
I have a data set which is a large unweighted cyclic graph The cycles occur in loops of about 5-6 paths. It consists of about 8000 nodes and each node has from 1-6 (usually about 4 …
1
vote
5answers
98 views
How to create an ontology in python?
Are there libraries or certain "techniques" that you can use to create an ontology of elements?
Or "design patterns"?
I am talking about just a "graph" of things.
Suppose I have …
0
votes
5answers
92 views
Worst case running time (Big O)
Hi every one. I have this question, and I don't know how to solve it, because I don't understand it. :(
The question is:
Programs A and B are analyzed and are found to have
…
7
votes
6answers
297 views
Prime Factorization
I have recently been reading about the general use of prime factors within cryptography. Everywhere i read, it states that there is no 'PUBLISHED' algorithm which operates in polyn …
0
votes
1answer
57 views
RSA cryptosystem
Hi i am trying to set up an RSA cryptosystem i have all the values except d selected prime numbers: p=1889, q=2003 n=3783667 phi=3779776 e= 61
i got stuck finding d could anyone h …
0
votes
2answers
77 views
multiplicative inverse?!?!?
Hi,
I know that an affine cipher substitutes BD with SG. I need to find the encryption formula, in the form y = a x + b, where a and b are coefficients.
From the information above …
7
votes
16answers
630 views
Your favorite poorly-named computer science concepts [closed]
Subjective question inspired by this thread...
I believe that the term "random salt value" is one of the most poorly-named concepts in computer science. There is really nothing ra …
5
votes
2answers
83 views
Rules Engine vs Expert System
What is the difference between a rules engine and an expert system?
Example1:
Let's say that I have a program that determines the expiration date of a new driver's license. It ta …
39
votes
72answers
4k views
What programming languages do the top tier Universities teach?
I'm constantly being inundated with articles and people talking about how most of today's Universities are nothing more than Java vocational schools churning out mediocre programme …
2
votes
4answers
109 views
Which CS curriculum to take?
I'm currently planning to do a transfer right now and my area of interest is Software Development.
I've been thinking a lot about these two curriculum and I want to ask advice on …
1
vote
2answers
98 views
Pac-Man representation with Finite State Automaton
Hi there,
Consider a game similar to pac-mac that we want to represent it with an FSA graph. We have a maze (table) and there are berries into it in random positions. The goal is t …
8
votes
10answers
206 views
How can I learn higher-level programming-related math without much formal training?
I haven't taken any math classes above basic college calculus. However, in the course of my programming work, I've picked up a lot of math and comp sci from blogs and reading, and …
0
votes
1answer
79 views
How would you interpret this Compiler/Grammar homework question?
I'm working on my compiler homework and I have the following question:
Consider the following grammar:
lexp -> number : (op lexp-seq)
op -> + | - | *
lexp-seq -> lexp-seq …
45
votes
78answers
6k views
What was your biggest CS eye-opener?
What was the single thing you learned (either in classes or during work) that felt most like scales falling off your eyes?
For me, it was a lecture about microcode, because that f …
