The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
107 views

Java Byte/byte array space efficiency comparison

I need to create a space efficient 2D array for a large number of 8 bit values. I began writing my class using a few layers of abstraction and generics to allow for code reuse. Once I got to ...
0
votes
2answers
120 views

Most space efficient way to store large integer from php to mysql?

I'm working with integers greater up to 128 bits long. They're used to store a large set of flags and I don't need to do any weird math with them, so I can treat it like a string in php to get around ...
0
votes
4answers
78 views

how to make a certain number of variables with a different name?

I've started programming in C# to develop some console applications and I was wondering how I could make a certain number of variables with a different name in a more efficient way. For now I'm doing ...
0
votes
1answer
38 views

does BIT fill unused space past 1 byte?

My tables will probably have very large row lengths. If I'm reading correctly, a BIGINT with a value of 1 will take up the full 8 bytes. ...
1
vote
1answer
40 views

using BIT as INT for storage volume efficiency

If I'm understanding correctly, BIT is extremely disk efficient. For my case, I know I will always only have three values which I'd like to treat like INTs: 1, 2, & 3. Am I correct that b'00' is ...
3
votes
1answer
84 views

Is there a space efficient implementation of mergesort?

I just coded up this working version of mergesort: static int[] merge(int[] first, int[] second){ int totalsize = first.length + second.length; int[] merged_array = new int[totalsize]; ...
2
votes
2answers
62 views

SQLite - is foreign key more efficient than an int column?

I have a table: CREATE TABLE pupils ( id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT, surname TEXT, address TEXT, score INTEGER ); where score is a percentage. Is it more ...
1
vote
0answers
45 views

How to most efficiently fill a printed page with 1 main image and scaled padding images?

I am printing panoramas with aspect ratios between 1.7:1 and 8:1. A common case is an image which scales to 18" x 8" leaving 4 inches on a standard 12x18 inch page. Paper only comes in so many sizes, ...
0
votes
1answer
129 views

character frequency calculation in string

I am looking for the most efficient (time and space) algorithm for character frequency calculation for a given string. The simplest algorithm that comes to mind is to have a flag-array (size = ...
1
vote
3answers
142 views

Memory and speed efficient search on Strings

I have a bunch of Strings I'd like a fast lookup for. Each String is 22 chars long and is looked up by the first 12 only (the "key" so to say), the full set of Strings is recreated periodically. They ...
0
votes
2answers
135 views

Oracle SQL - Is there are more efficient way to organise a massive case statement

Currently I have a report which looks at different types of documents. Each document has an assigned timescale it should be completed by (i.e. 2 days, 4 days, etc). There are more than 100 types of ...
0
votes
1answer
81 views

Database Application - Store or compute on-the-fly?

I have a table of purchase list with fields: ItemName, Quantity, UnitPrice, Amount. Note that Amount is equal to Quantity * UnitPrice. My simple problem is, should I STORE the amount or COMPUTE it ...
0
votes
3answers
60 views

Recommended SQL Types and Lengths

I'm new to SQL and I'm working on a table that stores account information for a multiplayer game. I'm wondering what is the most efficient way to store a lot of data. For these three columns, I ...
11
votes
3answers
7k views

Difference between passing array and array pointer into function in C

What is the difference between the two functions in C? void f1(double a[]) { //... } void f2(double *a) { //... } If I were to call the functions on a substantially long array, would these ...
3
votes
3answers
402 views

How would you most efficiently store latitude and longitude data?

This question comes from a homework assignment I was given. You can base your storage system off of one of the three following formats: DD MM SS.S DD MM.MMM DD.DDDDD You want to maximize the ...
6
votes
16answers
3k views

Most compact way to encode a sequence of random variable length binary codes?

Let's say you have a List<List<Boolean>> and you want to encode that into binary form in the most compact way possible. I don't care about read or write performance. I just want to use ...
2
votes
5answers
2k views

Efficiently finding the ranks of elements in an array?

How does one find the rank of each element of an array, averaging in the case of ties, efficiently? For example: float[] rank(T)(T[] input) { // Implementation } auto foo = rank([3,6,4,2,2]); ...
1
vote
4answers
316 views

What is Java's lightest weight non-concurrent implementation of Iterable?

I need a class that implements Iterable, and does not need to be safe for concurrent usage. Of the various options, such as LinkedList, HashSet, ArrayList etc, which is the lightest-weight? To ...
1
vote
3answers
449 views

Space efficiency of algorithms

It seems like none of the algorithm textbooks mentions about space efficiency as much, so I don't really understand when I encounter questions asking for an algorithm that requires only constant ...
6
votes
4answers
4k views

more efficient way to pickle a string

The pickle module seems to use string escape characters when pickling; this becomes inefficient e.g. on numpy arrays. Consider the following z = numpy.zeros(1000, numpy.uint8) len(z.dumps()) ...
7
votes
6answers
2k views

Algorithms for Big O Analysis

What all algorithms do you people find having amazing (tough, strange) complexity analysis in terms of both - Resulting O notation and uniqueness in way they are analyzed?
2
votes
6answers
252 views

Ideal options for archiving flat files

We receive multiple thousands of flat files per week currently, and I have a system that runs reports on these and exports them to PDF for our people to process and reference. I currently bulk load ...