Tagged Questions
The memory-efficient tag has no wiki summary.
7
votes
5answers
204 views
Pthreads - High memory usage
I am programming something in C that creates a lot of Pthreads in Linux on a 256Mb system. I usually have +200Mb free.
When I run the program with a low amount of threads it works, but once I make it ...
4
votes
5answers
2k views
Memory-efficient way of computing the median of a large data set? [closed]
If one computer can only hold 1 million numbers, how to find out the median number from 100 million numbers?
3
votes
3answers
413 views
How do you design FIFO queue with variable data size?
I'm just working on the FIFO queue (the simple one, just what's pushed first, pops at first) with the variable data size but I'm not sure with the way I'm designing it. The data types I will store ...
3
votes
1answer
128 views
Is there a way to paste together the elements of a vector in R without using a loop?
Say there's a vector x:
x <- c("a", " ", "b")
and I want to quickly turn this into a single string "a b". Is there a way to do this without a loop? I know with a loop I could do this:
y <- ...
3
votes
9answers
540 views
Memory-efficient string-to-string map in Python (or C)
I need a memory-efficient data structure for for storing about a million key--value pairs, where keys are strings of about 80 bytes, and values are strings of about 200 bytes, the total key and value ...
3
votes
2answers
692 views
Building an EFFICIENT Sudoku Solver
Yes, I know this is nothing new and there are many questions already out there (it even has its own tag), but I'd like to create a Sudoku Solver in Java solely for the purpose of training myself to ...
3
votes
4answers
139 views
what's more efficient? checking == or just mutating the variable?
Imagine I had a variable called X.
Let's say every 5 seconds I wanted to make X = true. (it could be either true or false in between these 5 seconds, but gets reset to true when the 5 seconds are up).
...
3
votes
2answers
227 views
What's the most efficient way to load data from a file to a collection on-demand?
I'm working on a java project that will allows users to parse multiple files with potentially thousands of lines. The information parsed will be stored in different objects, which then will be added ...
2
votes
2answers
97 views
Is the wide or long format data more efficient?
I am just curious whether it is more efficient to store data in long or wide format regardless of the interpretative? I have used object.size() to determine the size in the memory but they do not ...
2
votes
5answers
76 views
Generating permutations with sub-linear memory
I am wondering if there is a sufficiently simple algorithm for generating permutations of N elements, say 1..N, which uses less than O(N) memory. It does not have to be compute n-th permutation, but ...
2
votes
4answers
107 views
Is this an efficient MySQL database design?
I am working on a project wherein I have a set of keywords [abc, xyz, klm]`. I also have a bunch of text files with content [1.txt, 2.txt, 3.txt].
What I am doing is bumping the keywords against the ...
2
votes
1answer
77 views
Python: Memory cost of importing a module
The memory cost obviously depends on exactly how large a module is, but I'm only looking for a general answer: Is it generally expensive or cheap to import a module in Python? If I have a few tens of ...
2
votes
1answer
309 views
Efficient algorithm for collisions in 2D game?
I'm programming a Bomberman in Java following a tutorial (this is my first game).
The tutorial suggests the following code for detecting collisions.
for (int p=0; p<entities.size(); p++) {
...
2
votes
5answers
214 views
Efficient reduction of a list in python
So I have a list of 85 items. I would like to continually reduce this list in half (essentially a binary search on the items) -- my question is then, what is the most efficient way to reduce the list? ...
2
votes
3answers
163 views
How to compare the pairs of coordinates most efficiently without using nested loops in Matlab?
If I have 20 pairs of coordinates, whose x and y values are say :
x y
27 182
180 81
154 52
183 24
124 168
146 11
16 90
184 153
138 133
122 79
192 183
39 25
194 63
129 107
115 161
33 14
47 65
...
2
votes
3answers
121 views
Python - dividing a list-of-lists to groups
Consider the following simplified case:
lol = [['John','Polak',5,3,7,9],
['John','Polak',7,9,2,3],
['Mark','Eden' ,0,3,3,1],
['Mark','Eden' ,5,1,2,9]]
What would be a pythonic ...
2
votes
4answers
366 views
An Efficient way of randomizing an array - Shuffle code
I was asked this question in an interview and I gave various solutions but the interviewer was not convinced. I am interested to find a solution. Please throw in your views :
Q: Write an efficient ...
2
votes
2answers
154 views
tidy/efficient function writing (garbage collection) in R
Excuse my ignorance, as I'm not a computer engineer but with roots in biology. I have become a great fan of pre-allocating objects (kudos to SO and R inferno by Patrick Burns) and would like to ...
2
votes
5answers
573 views
Capturing Non-Zero Elements, Counts and Indexes of Sparse Matrix
I have the following sparse matrix A.
2 3 0 0 0
3 0 4 0 6
0 -1 -3 2 0
0 0 1 0 0
0 4 2 0 1
Then I would like to capture the following information ...
1
vote
1answer
103 views
Python gzip - extracting .csv.gz file - memory error
I tried to write a script to access a .csv.gz file from a ftp server and write the contents to a .csv file back on the same server. This method seems to work fine as long as the file is less than ...
1
vote
3answers
110 views
Is it ok for a javascript variable to be 2Mb long?
I have a list of all articles in NY Times from its beginning and want have an instant access to all of them without connecting to external database, so my solution is holding it in one variable. But ...
1
vote
7answers
150 views
How can I have exactly 2 bits in memory?
I should be able to store a value in a data structure that could go from 0 to 3.. so I need 2 bits. This data structure I will be great 2 ^ 16 locations. So, i want to have 2 ^ 16 * 2 (bits). In C + ...
1
vote
2answers
120 views
How do I make make my hash table with linear probing more efficient?
I'm trying to implement an efficient hash table where collisions are solved using linear probing with step. This function has to be as efficient as possible. No needless = or == operations. My code is ...
1
vote
1answer
33 views
Hash efficiency
I want to store pxq bytes of data in a hash.
Which is more efficient ?
A hash with pxq entries storing a single byte each
or
a hash with p entries each storing q bytes of data
Keys are sparse ...
1
vote
2answers
120 views
Efficient way to update db2 database rows
I have a table with 92 million rows. I have a list of 4000 IDs from that table which need data updating. I put the 4000 IDs into their own table and tried running the following:
update clients
set ...
1
vote
5answers
137 views
Higher dimensional array vs 1-D array efficiency in C++
I'm curious about the efficiency of using a higher dimensional array vs a one dimensional array. Do you lose anything when defining, and iterating through an array like this:
array[i][j][k];
or ...
1
vote
2answers
114 views
creating an iterator in Python from a dictionary in memory-efficient way
I'm iterating through a very large tab-delimited file (containing millions of lines) and pairing different lines of it based on the value of some field in that file, e.g.
mydict = defaultdict()
for ...
1
vote
4answers
213 views
Efficient way to keep a graph (2-D array)
Does anyone know a more efficient way to keep a graph information (i.e. more efficient than keeping it as 2-D array), in terms of memory space or build time?
you can assume it's values are limited ...
1
vote
2answers
175 views
Memory Efficient file append
i have several files whose content need to be merged into a single file. i have the following code that does this ... but it seems rather inefficient in terms of memory usage ... would you suggest a ...
0
votes
1answer
59 views
Get count with cursor.getCount() or to execute a rawQuery with a COUNT on a SQL clause?
What would be better in terms of memory efficiency or would have the best overall performance on Android and SQLite, getting a record count with cursor.getCount() or to execute a rawQuery with a COUNT ...
0
votes
1answer
40 views
android saving resources - running multiple services
So, ive got to run multiple services for different tasks. Though, the repeating values are the same. That means the services are sending broadcasts every x seconds (they ve got the same x) .
Now : ...
0
votes
3answers
36 views
Write and stream a templated Xml as efficiently as possible
I am trying to find the best solution to prevent us to allocate too much memory when building an Xml document. I have to construct a fairly large Xml with the less resource possible (the web service ...
0
votes
5answers
56 views
Why can a short only hold 65,536 possible values?
I understand that with a short you can have 65,536 possible ints, but why can't you have 255,256 possible values (0 to 255,255 unsigned)? I see that you could do it like this:
Has someone already ...
0
votes
4answers
91 views
Code efficiency for text analysis
I need advice regarding text analysis.
The program is written in php.
My code needs to receive a URL and match the site words against the DB and seek for a match.
The tricky part is that the ...
-3
votes
13answers
104 views
array validation - without using an auxiliary array
This question is for real brainiacs, cause it should be done without an auxiliary array
and has to be most efficient!
C program - needs to recieve an array with X numbers
(suppose X=4 array : ...