Use this tag for questions related to memory efficient code/applications/etc.
What are the benefits of having a member variable declared as read only? Is it just protecting against someone changing …
c# readonly processing-efficiency memory-efficientSay there's a vector x: x <- c("a", " ", "b") and I want to quickly turn this into a …
r paste memory-efficientWhat are are the relative advantages of the three in terms of the number of comparisons performed and the amount …
performance sorting memory-efficientYes, I know this is nothing new and there are many questions already out there (it even has its own …
java sudoku memory-efficientI'm looking for the most memory-efficient way to compute the absolute squared value of a complex numpy ndarray arr = np.…
python numpy complex-numbers memory-efficient numpy-ufuncGoal: Use a script to run through 5 million - 10 million XML files and evaluate their date, if older than 90 days …
powershell datetime delete-file memory-efficientI'm trying to perform checks on the first and last elements of an interator. It has several thousand entries, so …
python iterator memory-efficientI'm just working on the FIFO queue (the simple one, just what's pushed first, pops at first) with the variable …
delphi queue delphi-2007 fifo memory-efficientI'm programming a Bomberman in Java following a tutorial (this is my first game). The tutorial suggests the following code …
java 2d collision-detection memory-efficient