The theory tag has no wiki summary.
0
votes
0answers
7 views
Need a simple example on time-stamp protocol in concurency control (both read and write)?
I've seen the conditions for read and write operations in this time stamp protocol but its implementation using an example will make things clear !
thanks.
0
votes
3answers
59 views
Theory - How to Tell if Elements Overlap?
I have a question, and I don't want an implementation. I just want a bit of help in my reasoning.
I want to determine if two objects overlap (their x and y coordinates, as well as their height and ...
-4
votes
0answers
36 views
Offline login system [closed]
Ok, I am making 2d java game and I am writing a login system with accounts for it.
The problem is because the game will need to be bought before played what if the user temporarily cant connect to ...
0
votes
1answer
32 views
Init parent class with a Child contstructor in Java, theory
I've just tested this code.
Main.
public class Main {
/**
* @param args
*/
public static void main(String[] args) {
Parent parent = new Child(12, "Lorem", 12);
if ...
0
votes
0answers
28 views
Specified graph edge length with NetwokX
I need to be able to make a graph with specified edge lengths, I can do this with:
G = Graph()
edgeList = [(a, b, 5), (a, c, 6), (a, d, 7)]
G.add_weighted_edges_from(edgeList)
This is fine, until I ...
1
vote
1answer
53 views
Is it wrong to use Assert.That (rather than Assume.That) with a [Theory]?
interface IPoint
{
int X { get; }
int Y { get; }
}
static bool CoincidesWith(this IPoint self, IPoint other); // implementation unknown
I want to write a NUnit test that verifies my ...
0
votes
1answer
26 views
Tail v. Head Recursion
I was wondering if you would identify this as a head or tail recursive function:
int exponentiation(int x, int y){
if(!y) { return 1; }
return y > 1 ? x * exponentiation(x, y-1) : x;
}
0
votes
2answers
71 views
What does the O(1) in “ln ln n / ln 2 + O(1)” mean?
I have difficulty understand the O(1) notation in this formula, does it stand for a constant? Why would people use big-O notation like this?
This formula comes from the paper "Balanced Allocations" ...
1
vote
2answers
36 views
Engineering impossible bugs? [closed]
How would you engineer an impossible bug? Is it even possible?
Take a simple example: Bob needs to add commenting functionality to his popular internet blog. It gets millions of visitors a month and ...
3
votes
1answer
52 views
Regular Expression for a infinite language
I'm just kind of confused about regular expressions. Can there be a regular expression that recognizes an infinite language or do all regular expressions recognize finite languages?
2
votes
1answer
75 views
What does a String Property GET return?
In C#
Assume I have the following:
public String whatHappens{ get; set; }
Assume the property has been initialized and set.
Then down here I call
Console.WriteLine(whatHappens);
Does the GET ...
-1
votes
0answers
36 views
Different forms of morphism in programming languages [closed]
I wonder, we... all of us are working often with the such meaning, which is called polymorphism.
But, as I know, there are not only polymorphism as the a morphic structure.
There are different types ...
0
votes
0answers
14 views
How to take complement of a language? [migrated]
I'm stuck on this question about context-free languages and was hoping for some clarification.
L = {a^i b^j c^k | i=j and i=k} is NOT context-free.
Show that its complement IS context-free.
I ...
1
vote
1answer
41 views
Database Normalization and Structure
I have a data stucture that has the following tables
Customers
Transactions (Type A)
Transactions (Type B)
We are adding a Comments Table
Customers have one more more of Transactions A and ...
0
votes
0answers
17 views
Calculate the max data rate with Claude Shannon's Equation?
I've been given this equation in one of the book i'm going through, except when I do it myself I get a different answer but i'm not really to sure it i'm wrong or the book's wrong since the steps i'm ...
0
votes
1answer
38 views
Generate original array from reordered one?
Assuming that M1 is an array of disordered 1byte alphabets (see figure).
What is the best way to transform M1 to M2, an array of somewhat ordered alphabets which allows us to generate back the ...
0
votes
1answer
40 views
How Do sequence numbers affect sliding window protocol with fixed window size?
I've been going through, trying to learn this protocol from a book, except at this point they seem to shy away from it, they express that the sequence bit is the number of frames one can send and ...
3
votes
2answers
104 views
Recursive set union: how does it work really?
I am currently taking the Scala course on Coursera on my free time after work, in an attempt to finally give a try to functional programming. I am currently working on an assignment where we are ...
2
votes
1answer
27 views
A regular expression for repeated, interleaved copies of a string?
Find a regular expression for this language:
L = {λ, ab, abac, abacab,abacabac, abacabacab,...}
Ok so I have been working of this problem for sometime now. So far I know that 'ab' repeats ...
-1
votes
0answers
15 views
NP-hard problems are deciable? [closed]
Is it right to say that for all NP-hard problems, they are also decidable?
I think this is not right because then this would seem to suggest that P=NP I believe.
-1
votes
1answer
26 views
Determine that the languages accepted by two finite automata are same or not [closed]
I have two DFA's.I want to determine that the languages accepted by those finite automata are same or not.I would be much obliged if anyone could be so kind enough to explain how to do this.Thanx.
0
votes
1answer
142 views
VBA Difference between two ranges
I can find plenty of questions and example regarding the 'Union' and 'Intersect' VBA methods but I can't find anything much regarding a 'Set Difference' method? Does this exist (other than by using ...
2
votes
1answer
51 views
How to Clear instance filed afterClass in Junit?
I am looking a way to collect and publish these myResults. But Junit @AfterClass only supports static method.
If I am having a super class If multiple test cases are running it can be ugly. Any idea ...
1
vote
0answers
78 views
How Cocos2d and other 2d OpenGL Engines draw sprites?
Just for learning purpose I want to build a really simple 2D openGL Engine, so I'm really curious to understand how the most famous Engines work (or at least which is your idea).
I know that using a ...
2
votes
3answers
69 views
What is the best way to generate a unique unsigned integer from a string in c++?
I don't need code (you can provide examples in code if you wish) but I would like the theory.
Let's pretend I have the following function:
UINT GenerateID(const char * string);
I would like the ...
1
vote
2answers
170 views
Difference between user-level and kernel-supported threads?
I've been looking through a few notes based on this topic, and although I have an understanding of threads in general, i'm not really to sure about the user-level and kernel-level threads.
I know ...
3
votes
2answers
63 views
What is the relationship between a function and a value?
What is the relationship between a function and a value? I thought that a function was a type of value; however, functions both contain values (arguments) and return values too.
I'm (obviously) ...
0
votes
2answers
83 views
Do I have to declare a class public (it's the only class in a program nobody will ever use)
I'm a beginning computer science student going through the Java gauntlet. We had to write a program with an error in it; it was a fun exercise actually. One of my classmates emailed me a patch(in ...
0
votes
1answer
17 views
What is the computational complexity of finding the number of times a circuit changes value on an exponentially large graph?
Let C be a circuit that maps n-length bitstrings to elements of {0, 1, 2}. Imagine ordering the set of n-length bitstrings in a giant loop: 00000 is adjacent to 00001 and 11111; 00001 is adjacent to ...
3
votes
4answers
70 views
In profiling software, why is percentage used instead of time in milliseconds?
A colleague and I were looking over a Visual Studio Profiling report in VS2012 and they asked me, "Why would you use percentages to express duration of time in a method or time spent calling the ...
-1
votes
2answers
44 views
Reasons to have a dedicated logout page
In user-based websites, it is very common for websites to use a page like "logout.php", and I even use them myself on my own projects, but now I am wondering why. So my question is: Are there any ...
2
votes
1answer
71 views
Why are there a finite number of Turing machines?
In Michael Sipser's Introduction to the Theory of Computation, he states:
"some languages are not decidable or even Turing recognizable, for the reason that there are uncountably many languages ...
0
votes
1answer
145 views
Why isn't the class of Turing-Recognizable languages closed under Complement?
I'm studying Turing Machines and I've already showed how Turing-Decidable is closed for the operations of Union, Intersection, Concatenation, Complement and Kleene Star. Next I did some demonstrations ...
0
votes
1answer
54 views
Creating a hashed Primary Key when composite key is not permitted
My question is about the solution seen in the post below... I think that is is a fantastic idea. Especially since Django has had the composite primary key issue for years. To me this is a great ...
0
votes
1answer
72 views
Get all combinations of an array ( if i remove them 1 by 1 ) [duplicate]
Given:
{1,2,3}
Expected result:
{1,2,3},
{1,2},{1,3},{2,3},
{1},{2},{3}
So I want basically ALL possible combinations in a list ( but including all possible combinations of - when every element ...
-1
votes
1answer
32 views
How works the progam loader from simple OS?
Program loaders of simple OS like DOS, read the program code from a floppy or a HDD and move its byte code to the RAM.
Question 1: Where the byte code is moved exactly? To the Heap, Stack or another ...
-3
votes
1answer
26 views
What is the name of the part of the parenthesis (()) of a for-loop that terminates the loop
What is the name of the part of the parenthesis (()) of a for-loop that terminates the loop?
The parenthesis is the () but i dont get the rest of the question so if I had a loop like
enter code here
...
-1
votes
2answers
240 views
Some doubts about 8 queen problems algorithm [closed]
I am studying the 8 queen problem and I have think the following algorithm to solve this problem (but it seems not correct)
My algorithm work in this way on an 8X8 chessboard:
At the beginning put ...
2
votes
1answer
74 views
Any study comparing programming languages by average time to solve a task?
For example, one could assign tasks such as solving a mathematical problem or implementing a site or a simple game, and compare the average time it took for several experienced programmers in each ...
0
votes
2answers
94 views
Connecting perceptrons with output of previous ones?
Because of the help I received and researched here I was able to create a simple perceptron in C#, code of which goes like:
int Input1 = A;
int Input2 = B;
//weighted sum
...
4
votes
4answers
133 views
Nearest point to point, nearest point to line
Imagine a set of m points in 2D plane, called "candidates". And then one of two scenarios:
there is also a set of n points ("objects") - see Fig. 1
there is also a set of n lines collinear with X or ...
0
votes
1answer
169 views
Execution time, high- vs. low-level programming language [closed]
When talking about execution time between high- and low-level programming languages I often hear that low-level languages performs a bit better than high-level.
Of course a low level can perform ...
2
votes
1answer
89 views
Algorithmic Complexity Analysis: practically using Knuth's Ordinary Operations (oops) and Memory Operations (mems) method
In implementing most algorithms (sort, search, graph traversal, etc.), there is frequently a trade-off that can be made in reducing memory accesses at the cost of additional ordinary operations.
...
1
vote
2answers
96 views
Why unit tests should not use database?
Reading an article Evil Unit testing, I am not exactly sure WHY the unit tests should never use DB, network or file systems. What if it an network app?
5
votes
3answers
119 views
Programming approach theory. When to write single-purpose functions?
I am very sorry, but I am unable to define this "thing" that I'm trying to figure out.
When writing functions we can take different approaches, I have made some "placeholder" examples:
...
4
votes
0answers
39 views
when( expression ){ do stuff }
Does anybody know in which programming language can you use this:
when( expression ){ do stuff }
It is supposed to register the expression and the code block in some array which in turn is parsed ...
2
votes
1answer
52 views
Shortest string possible
I was at an interview, and I was asked to give the shortest string generated given this context free grammar. I did not review in years, so I think I got it wrong. What is the answer so I know it for ...
0
votes
1answer
73 views
explaining context free grammar ambiguity for job interview
I was at a job interview, and this is the question they asked me,
Are these two below ambigous? If they are, provide a string. If they are not, prove why they are not.
I couldn't solve it, and would ...
0
votes
0answers
46 views
Understanding of Push down automata with a difference?
So I have been given the task of creating an PDA that recognises the language a^2n b^3n | n = 0,1,2...}.
Am I right in thinking that it needs to have atleast 3 times number of b's than a's?
So for ...
-1
votes
1answer
40 views
Pumping Lemma's Condition 3 concept
I'm following one of the examples from my textbook on the Pumping Lemma:
Let C = {w | w has an equal number of 0s and 1s}
Condition 3 stipulates: |xy| <= p
If |xy| <= p, then y must consist ...

