The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
134 views

efficient way to find matches against two strings

I need to find all equal substrings against two strings. I've tried to use suffix tree to lookup substrings and it works fast, but too memory consuming (inappropriate for my task). Any other ideas?
0
votes
3answers
190 views

algorithm that can determine for every regular language

how can I show that there exists an algorithm that can determine for every regular language L, whether or not |L| ≥ 5
0
votes
3answers
226 views

Separating Audio and Video Steams

While I'm not sure whether Stack Overflow is the best place to ask this question, its the best I could come up with see how my google skills are failing me... Even though this question isn't specific ...
-1
votes
3answers
385 views

dynamic programming word segmentation

Suppose I have a string like 'meetateight' and I need to segment it into meaningful words like 'meet' 'at' 'eight' using dynamic programming. To judge how “good” a block/segment "x = x1x2x3" is, I am ...
3
votes
2answers
178 views

Storing item positions (for ordering) in a database efficiently

Scenario: There is a database of movies a user owns, movies are displayed on a page called "my-movies", the movies can be displayed in the order that the user desires. For example "Fight Club" in ...
2
votes
2answers
454 views

Getting win percentages for Texas hold'em poker without monte carlo/exhaustive enumeration

Sorry I'm just starting this project and don't have any ideas or code, I'm asking more of a theoretical question than a programming one. It seems that every google search provides the same responses ...
2
votes
2answers
1k views

Big O complexity of finding cycles in an Undirected graph

I need to find the complexity of finding all the cycles in a undirected graph consisting of 50 nodes. Moreover, if the graph grows large, will the complexity be changed and what will be it if the ...
1
vote
2answers
44 views

Why testing should not continue when defect has critical priority?

I am trying to understand a testing theory and few times I have seen following, which is related to priority: 1. Critical : Bugs at this level must be resolved as soon as possible. Testing should not ...
1
vote
2answers
65 views

Some good reading on polygon algorithms

What are some good resources (books, articles, sites) about polygon intersection and union algorithms?
1
vote
2answers
194 views

How would you parse this ingredient line?

I have a text area full of lines of ingredient; typically in a [quantity] [measurement] [ingredient] [additional] format. For example, a few ingredient lines might be: 1 tablespoon garlic, minced ...
0
votes
2answers
36 views

Regarding Functional Programming Theory

Is there a consensus of preference between these two programming approaches? Could you please explain to me why, on pros`cons scale, for your chosen paradigm. (i) A program has three functions that ...
0
votes
2answers
62 views

Is making something “atomic” essentially just a lock mechanism?

From the OpenMP summary pdf: "operation ensures that a specific storage location is updated atomically". This brough up the question for me what "atomic" is and wheter it is just a lock mechanism. So ...
0
votes
2answers
126 views

MVC: Telling the controller to stop

I'm experimenting with javascript and MVC models. I want to (simplified example) move an object across the screen a random number of pixels between 1 and 10 and then have it stop when it gets to, say, ...
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 ...
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 ...
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
48 views

Robustness in my XML-RPC plugin

I have written a jQuery plugin that makes communicating with XML-RPC servers from client side JavaScript much easier than it would otherwise be. I have used it in an application of my own where is ...
0
votes
1answer
81 views

Does this proof really prove undecidability of halting?

I want to ask a couple questions about the following proof. The proof originally came from a textbook and then a question on stackoverflow below. How does this proof, that the halting problem‍​ is ...
0
votes
1answer
156 views

Cut Sets in a graph

I have a question regarding the maximum flow in a network. I was trying to find a cut set in a graph that could disconnect the source and the destination. I explored all the edge independent paths in ...
0
votes
1answer
87 views

Efficient way to handle user roles

I am working on one portal where will be few user roles. I have been wondering what is the best way to handle them. I have created separated tables for users and clients, but clients will want the ...
0
votes
1answer
45 views

Variation of the job scheduling prob

I'm doing some administration work for an aviation transport company. They build aircraft containers and such here. One of the things they want me to code is a order optimization script that the guys ...
0
votes
1answer
84 views

Testing phases, where is the smoke testing?

So I was looking to a book and I dont really understand their classification: Unit tests Integration tests Smoke and Sanity tests System tests Acceptance tests I thought smoke test would be right ...
0
votes
1answer
192 views

Theory of Computation: Design a 2-stack PDA for this language?

Consider a language L2 = { ak bk ck | k >= 0 }. (k should be superscript) Design a 2-stack PDA for the language L2. Could anyone give me some guidance on how to go about doing this?
0
votes
1answer
39 views

Is it advantageous to rank documents based on their relevance to a base document

I am looking at ranking document based on their relevance to a reference document or a base document instead of the query . Would it be advantageous to use this approach or should i stick to using a ...
0
votes
1answer
35 views

Query Term elimination

In boolean retrieval model query consist of terms which are combined together using different operators. Conjunction is most obvious choice at first glance, but when query length growth bad things ...
0
votes
1answer
260 views

USACO: Subsets (Inefficient)

I am trying to solve subsets from the USACO training gateway... Problem Statement For many sets of consecutive integers from 1 through N (1 <= N <= 39), one can partition the set into two sets ...
0
votes
1answer
58 views

Allocators with in-memory compression

I am wondering, are there projects/at least some research on combination of in-memory compression and memory allocators (at the expense of some speed, of course)? For example, imagine the scenario: ...
0
votes
1answer
344 views

how to prove 2 sql statements are equivalent

I set out to rewrite a complex SQL statement with joins and sub-statements and obtained a more simple looking statement. I tested it by running both on the same data set and getting the same result ...
-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 ...
-1
votes
1answer
429 views

What are real-world industry applications of TSP?

Wikipedia says: The Travelling Salesman Problem has several applications even in its purest formulation, such as planning, logistics, and the manufacture of microchips. I would like to know ...

1 2