Tagged Questions
The fastest tag has no wiki summary.
5
votes
2answers
537 views
“Fastest” hash function implemented in Java, comparing part of file
I need to compare two different files of the instance "File" in Java and want to do this with a fast hash function.
Idea:
- Hashing the 20 first lines in File 1
- Hashing the 20 first lines in File 2
...
4
votes
2answers
463 views
What is the fastest Java collection with the basic functionality of a Queue?
What is the fastest collection in Java?
I only need the operations to add and remove, order is not important, equals elements is not a issue, nothing more than add and remove is imporant.
Without ...
4
votes
3answers
478 views
Fastest brainfuck interpreter?
Simple question: What is the fastest brainfuck interpreter available?
I am asking this because I am about to write my own optimizing bf interpreter and I need something to compare it with.
2
votes
4answers
137 views
Python: Fastest way to check if a value exist in a Array
I such the fastest way to know if a value exist in a array ( a array with millions of value in it) and what it's index. I know all value in the array is unique like my example.
My first methods I try ...
2
votes
1answer
243 views
PHP MYSQL Search Engine
I am trying to implement search engine based on keywords search.
Can anyone tell me which is the best (fastest) algorithm to implement a search for key words.
What I need is:
My keywords: search, ...
2
votes
4answers
186 views
Fastest Way to Update a Dictionary & Check for Keys
I am building a dictionary of a very long string (~1G), where key is a fixed-length k-mer, and value is all the occurrence positions. When k is large (>9) it makes no sense to pre-build the k-mer ...
2
votes
5answers
1k views
what is the fastest way to learn Android and quickly start developing apps
I am getting out of time for the android app. I am not a lazy guy but I got indulged in some urgent problems.
I am a recent computer science student and have intermediate knowledge of java. However I ...
2
votes
9answers
425 views
Fastest integer type for common architectures
The stdint.h header lacks an int_fastest_t and uint_fastest_t to correspond with the {,u}int_fastX_t types. For instances where the width of the integer type does not matter, how does one pick the ...
2
votes
1answer
673 views
fastest way to read/write to sql server - large dataset
I have about 60Million records in database and have to process all of them. So the idea is to use c# code to read data, process it and then put it back in the db. Data doesn't come and go to the ...
2
votes
10answers
445 views
What's the fastest way to save data and read it next time in a IPhone App?
I have the following problem:
In my dictionary IPhone app I need to save an array of strings which actually contains about 125.000 distinct words; this transforms in aprox. 3.2Mb of data.
The first ...
1
vote
1answer
68 views
given a coefficient vector and a value the fastest way to evaluate this polynomial is
I remember reading somewhere (maybe someone can help remember where), that there is a method that is the fastest for evaluating a polynomial. Something reminds me that it had something to do with ...
1
vote
2answers
141 views
Fastest way to compare two same-length strings
Strings are fixed length 8, contain alphanumeric characters and right-padded with spaces.
I.e,
"STRING1 "
"STR2 "
"S "
etc..
I was thinking memcmp might be the fastest here?
1
vote
3answers
501 views
Convert YUV webcam image to java byte array
In Java, what is the most efficient way of converting a frame of PC webcam image data in YUV (I420 or YUY2) format to a byte (or integer) array?
1
vote
4answers
1k views
Fastest database? [closed]
I am looking for fastest free key-value pair database available. Database doesn't have to be server-based, it can be linked into the application. I am aware of Tokyo Cabinet. Any other suggestions?
0
votes
1answer
98 views
Any programming language which is faster to read a file than PHP's readfile(test.html); @ 20.000,- hits / second?
What Server Side Programming Language , which without a single doubt is THE FASTEST to output a file content ? (I am looking at ~20k file hits / second , so YES it does matter if certain X Language ...
0
votes
3answers
113 views
PHP fastest way to check list of domains
I have a list of 20.000 domains I want to resolve into ip addresses. I am looking for the fastest way to do that in php.
I used gethostbynamel() but that is too slow. I am looking for another command ...
0
votes
1answer
166 views
Android: What is the fastest way to draw an array of lines?
i need to draw an array of lines in overlay. Currently, i use canvas and bitmap and draw about 500 lines. The drawing time is very high - around 200 ms which is bad, but acceptable. Now, i need to add ...
0
votes
1answer
173 views
What is the fastest jQuery v1.4.4 Ajax content respond way by server-side?
What is the fastest jQuery v1.4.4 Ajax content respond way by server-side? I use PHP and MySQL.
Do I have to convert MySQL data to JSON or XML format? Or is there simpler way to have fastest Ajax ...
0
votes
1answer
521 views
Fastest hash function(ASP.NET) for hashing filenames
I'm trying to optimize my ASP.NET thumbnailing script, so it doesn't resize all the images all the time, and one part of the problem is choosing the hash function for the thumbnail naming/checking ...
0
votes
2answers
118 views
Fastest way to write string on Windows?
What would be the absolute fastest possible way to write a string to the standard/console output on Windows? I'm interested in the solution for both null- and non-null-terminated strings.