Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
21answers
804 views

Programming an infinitely fast machine with infinite memory [closed]

That is a hypothetical question. If there existed a machine with infinite memory that could execute any set of instructions within the blink of an eye, what would programming that machine be like? I ...
8
votes
15answers
1k views

How can you concatenate two huge files with very little spare disk space?

Suppose that you have two huge files (several GB) that you want to concatenate together, but that you have very little spare disk space (let's say a couple hundred MB). That is, given file1 and ...
5
votes
3answers
247 views

A faster sorting algorithm given a magic data structure?

Suppose that you have a magic data structure that represents a linear sequence of elements that supports lookup, insertion, and deletion of any index in worst-case O(1) time. (I'm pretty sure that no ...
4
votes
8answers
237 views

What is the fastest way to return x,y coordinates that are present in both list A and list B?

I have two lists (list A and list B) of x,y coordinates where 0 < x < 4000, 0 < y < 4000, and they will always be integers. I need to know what coordinates are in both lists. What would be ...
4
votes
5answers
126 views

Transfer files using checksums only?

Would it be possible to transfer large files using only a system of checksums, and then reconstruct the original file by calculations? Say that you transfer the MD5 checksum of a file and the size of ...
3
votes
4answers
184 views

Would there be benefits to a struct String in .Net?

Note: This is a hypothetical discussion. I don't actually want to implement a struct String. The .Net String class could be a value type (a struct), because it is immutable and has few members. But ...
2
votes
3answers
131 views

To throw a Thread

I have a question. Would it be possible, hypthetically, in Java, to throw a running thread as exception? I know this is madness, but just for fun, could it be done? Something along the lines of: ...
2
votes
3answers
3k views

Creating a cout function in C?

This is a totally hypothetical question, but I have to know the answer. I assume most C++ compilers are written in assembly. Which makes them different languages entirely (I could be wrong). That ...
2
votes
5answers
180 views

Is the PHP file instantiated on every AJAX call?

I was just wondering how the PHP is behaving in the background. Say I have a PHP which creates an array and populates it with names. $names = Array("Anna", "Jackson" .... "Owen"); Then I have a ...
2
votes
9answers
362 views

Alternative to Filename Extensions?

Since reading this question, I'm wondering: What would be the Right ThingTM to do to associate a UNIX file (ie, blob of data) with a file type? We have file extensions (DOS), data/resource forks ...
2
votes
13answers
378 views

Will reassigning a variable in every iteration of a loop affect performance?

Consider the following two ways of writing a loop in Java to see if a list contains a given value: Style 1 boolean found = false; for(int i = 0; i < list.length && !found; i++) { ...
1
vote
2answers
55 views

given N stacks and no dynamic memory

Many programming languages and Operating Systems have means of providing dynamic memory: new, malloc, etc. What-if: a program is restricted by using only stacks, with predefined (i.e. compile-time) ...
1
vote
3answers
82 views

Would it be possible to have a UTF-8-like encoding limited to 3 bytes per character?

UTF-8 requires 4 bytes to represent characters outside the BMP. That's not bad; it's no worse than UTF-16 or UTF-32. But it's not optimal (in terms of storage space). There are 13 bytes (C0-C1 and ...
1
vote
3answers
409 views

Variable Assignment and loops

A while back, I was working on a program that hashed values into a hashtable (I don't remember the specifics, and the specifics themselves are irrelevant to the question at hand). Anyway, I had the ...
1
vote
4answers
277 views

What would a multithreaded UI api look like, and what advantages would it provide?

Or, equivalently, how would you design such an API. Expected/example usage would be illustrative as well. My curiosity comes directly from the comments (and subsequent editting on my part) of this ...
0
votes
2answers
35 views

Does Excel have a built-in “hypothetical” function?

I have an Excel cell with a complicated formula relating to many other cells. Does a function exist that would allow me to look at what the value of that cell would be if I changed the value of ...
0
votes
7answers
521 views

How can I detect endianness on a system where all primitive integer sizes are the same?

(This question came out of explaining the details of CHAR_BIT, sizeof, and endianness to someone yesterday. It's entirely hypothetical.) Let's say I'm on a platform where CHAR_BIT is 32, so ...
0
votes
7answers
104 views

Convincing management to rewrite a product

A hypothetical organization (we'll call them Sprockets Incorporated) spent millions of dollars to rewrite a product. The rewrite ended with lost time, more bugs, and a harder to maintain version of ...
-4
votes
5answers
177 views

Lots of the tests in the test suite are failing! Any advice on debugging it?

I already solved this but thought I'd ask anyway... I have a large application with a reasonably comprehensive test suite and unit test system. I was working on it and made a change that shouldn't ...