The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
68 views

Memory efficient data structure for numbers

I have a very big table: id1 id2 count 1 234 4 1 5 123 1 432 5 23 234 7 id1 and id2 has many different values. count has limited number values(1-30000 or something) and i know ...
1
vote
3answers
59 views

Converting double to string function - memory issues?

I find myself having to std::cout various double variables. I've made a simple function to convert a double to a std::string, which I can then use with std::cout etc. // Convert a double to a string. ...
2
votes
1answer
40 views

java efficiency comparison in terms of memory allocation

This may be a duplicate question but I couldnt find what I am searching. If it exists, sorry about duplication. I want to learn that if the following part of codes are same in terms of memory ...
1
vote
1answer
83 views

Using Criteria API or java.util.List contains() method?

Lets assume the following situation: I have two entity classes Person and Comment. //Person class @Entity public class Person extends AbstractBusinesObject{ @OneToMany(mappedby ="owner") private ...
0
votes
0answers
29 views

Store and sort huge amount of data

This is my first time using this, so I hope I can explain my question well. I've recently encountered a problem of storing and sorting huge amount of data. I have a symmetric array which represents ...
0
votes
2answers
62 views

Looping through hash of arrays more efficiently

I have a hash of arrays. Which is the most efficient and fastest way to loop through it. my %h1 = ( C1 => ['3','1','2'], C2 => ['6','2','4'], C3 => ['8', '1'], ); OPTION 1 foreach ...
0
votes
3answers
55 views

More efficient in Android app? Database or Objects

I have 30 objects, each instance consisting of 7 string fields and a small bitmap. These objects will be destroyed and recreated daily. In my android app, would it be more efficient to write and read ...
3
votes
3answers
133 views

Sorting algorithm efficiency/performance

I'm a beginner in programming and was just playing with sorting and made this algorithm. It is similar to bubble, but it compares not the adjacent pairs but pairs like: first and second, first and ...
2
votes
3answers
54 views

efficienct SQL join for a range on large table

table1 table2 id number start end indicator 11 4 1 5 N 22 6 ...
2
votes
4answers
90 views

Java Array Efficiency

I am not 100% sure of the mechanism in action so I decided to post here for further clarifications. I am doing a project that should handle large amounts of data in Java (it has to be Java). I would ...
0
votes
0answers
33 views

android load sampled bitmap from url

Im trying to load bitmaps efficiently from url, but somehow in end im getting empty imageview. Everything is working if decoding from resource. try { InputStream in = new ...
2
votes
1answer
76 views

Which is more efficient and secured way, post connection or direct connection to a database?

I want to insert many data to a mysql database, only text of course. I'm currently doing via post, for example insertUser.php?user=asd&pass=asdas&email=asdasd and it will give me a response ...
-4
votes
1answer
199 views

Which is more efficient way in Java to read csv file CSVReader or RandomAccessFile? [closed]

I want to read a huge data file (csv format) containing rows and columns. I want to read and process individual columns in order. Which method is more efficient in terms of speed and memory ...
3
votes
3answers
144 views

Efficiently generating discrete random numbers

I want to quickly generate discrete random numbers where I have a known CDF. Essentially, the algorithm is: Construct the CDF vector (an increasing vector starting at 0 and end at 1) cdf Generate a ...
0
votes
3answers
67 views

Efficiency between two sorting functions

I have created a two functions which sorts integers from lowest value to highest then back to low. Does this type of sort exist? Anyways, I have the following two sorting functions which I have ...
2
votes
2answers
133 views

Why does C not have pass by address/reference without pointers?

Consider the trivial test of this swap function in C++ which uses pass by pointer. #include <iostream> using std::cout; using std::endl; void swap_ints(int *a, int *b) { int temp = *a; ...
1
vote
5answers
112 views

What programming language is better suited for implementing a search-based problemm solver?

I am currently beginning to work on my final project for an Artificial Intelligence class (as part of my B.Sc in Computer Science). In this project we are required to choose an interesting problem in ...
0
votes
2answers
117 views

Accessing n-gram frequencies from a large file

I'm quite new to natural language processing and java programming. I have a very large text file containing ngrams and related frequencies (aaprox. 250 mb). I need to get the frequency value, given an ...
2
votes
3answers
78 views

Java is using volatile keyword memory efficient?

If using 1 volatile variable, does it turn off cpu caching in for other related non volatile variables as well?
2
votes
1answer
129 views

How can I swap a section of a row with another within an array?

I am in the process of coding a simple Genetic Algorithm (GA). There are probably countless areas where I have unnecessarily used a for loop. I would like some tips on how to be more MATLAB efficient ...
3
votes
2answers
164 views

2bit bit-fields array effects on performance and cache efficiency?

I am in need of a 2bit array, I am not concerned with saving memory at all, but I am concerned with minimizing cache misses and maximizing cache efficiency. Using an array of bools will use 4 times ...
3
votes
1answer
147 views

How to draw upscaled pixel art efficiently in Android?

I'm making a game that has lots of pixel art in it. A standard button in my game is about 12x12 pixels and scaled up five times for displaying. All of the characters are also scaled two times bigger, ...
0
votes
0answers
36 views

Most memory-efficient way to store geo coordinates?

I need to send geographical coordinates over a very low band medium. We know a geo point, in this case, is defined as a couple of signed integer, a decimal point and 5 decimal digits, something like: ...
1
vote
3answers
121 views

Best way to set up function in Javascript (likely via closure?)

I've got a web application that makes a call to a web service which returns some JSON representing an array of objects. Each object has some fields. Here's some example JSON to give an idea: { ...
0
votes
2answers
103 views

Break vs Boolean?

My programming fundamentals teacher had said in one of her classes that using the "break" or "continue" keywords is less efficient then using a boolean to exit a loop. I wrote and ran a program ...
2
votes
1answer
201 views

Binary Search Tree vs a MultiMap

The problem I have to solve is that I have to input IP address prefixes and that data associated with them in a tree so they can be queried later. I'm reading these addresses from a file and the file ...
1
vote
3answers
98 views

efficient xslt conditional increment

In this question i asked how to perform a conditional increment. The provided answer worked, but does not scale well on huge data-sets. The Input: <Users> <User> ...
0
votes
1answer
63 views

Primality proof algorithms for extremely large integers of no specific form [closed]

I am looking for an algorithm that would make it possible to prove any large number for primality. By large number, I mean numbers with at least 100,000,000 decimal digits in them and which cannot be ...
2
votes
2answers
188 views

Finding combinations in a set of numbers efficiently

I am currently working on a java project, and I need one of part of it to give me a list of combination of numbers that fullfils 1<= A<=B<=C<=D<=E<=F<=N where N is any integer as ...
0
votes
1answer
91 views

What is the point of loading an Objective C category at runtime?

Is it: For memory efficiency from not having to store all the program's methods in RAM all the time? If so, is this really that common a problem? I feel like the overhead of having to load a new ...
3
votes
3answers
177 views

Simple Java Program Increasingly Consuming Memory

I have this simple Java Code which creates a single JFrame instance and displays it. This link contains the screenshot of memory consumption graph taken by jconsole What worries me is that java.exe ...
0
votes
1answer
50 views

Space efficient conversion from Wrapper to primitive and primitive to Wrapper

Given the following function: public void convertToWrapper(long[] longsToConvert) { } and public void convertToPrimitive(Long[] longsToConvert) { } Apache ArrayUtils exposes ...
3
votes
1answer
139 views

Object orientation, data orientation, cache pollution and cache obviousness

In a regular object oriented practice it is not that rare objects have multiple unrelated member properties. And when objects are being processed, it is not rare that it is done in different passes, ...
0
votes
1answer
147 views

Best data structure for sequential storing of variable-length objects on a limited memory

I have a limited fixed amount of memory on a MCU, on which I should store some objects. The amount of memory is very small and I must allocate all the memory for storing objects at the begining of ...
1
vote
2answers
188 views

Memory efficient, low overhead replacement for String in Java

After reading answers on this old question, I'm a bit curious to know if there are any frameworks now, that provide for storing large no.(millions) of small size(15-25 chars long) Strings more ...
1
vote
3answers
105 views

Memory efficient way to store huge number of booleans in PHP

I'm looking for an efficient way to store a huge number of booleans (up to 2.5*10e11) in PHP's memory. My first idea was to create an array of integers and store one boolean per bit in each integer: ...
1
vote
3answers
127 views

I just wrote a random number generator in PHP how do you guys think this can be improved? [closed]

I was working for a client and he wanted codes generated in the format [char][int][int] like in T56, N78, J89, etc... The char has to be in upper case. As a quickie I wrote this function as I found ...
1
vote
2answers
176 views

Copy the whole file from disk to memory to process or read data from file each time i need until the file is all read

I am working on something that cares efficiency very much. There are thousands of files and each file is as large as 300M. Each file contains at least 500 thousand items. My work is to process each ...
1
vote
3answers
674 views

Efficient ListView in android

What is the best way of constructing a ListView that uses the least memory possible? This is important, because I met a few implementations and most of them is lagging when I scroll the ListView on ...
3
votes
1answer
112 views

Should I re-use a single HTML::SimpleLinkExtor object for memory efficiency?

So this may seem like a silly question, but I'm building an application where memory is a very limited resource so I need to be as cautious about memory usage as I can. So my question is, which of the ...
1
vote
1answer
108 views

Given a list of paths through a graph, efficiently find the ones that use each edge

I have a graph and a list of paths in this graph. For each edge e, I need to find the paths that use e, then do some other work based on these paths. The size of the graph and a restriction on ...
0
votes
0answers
175 views

Efficient way of copy 2D array column to Google Spreadsheet Column?

I have a relatively large spreadsheet that I've been storing away to an array for manipulation, once done I'm sure there's a way to replace column "AA" (last column) on the live spreadsheet with ...
0
votes
2answers
124 views

Efficient Javascript Combinations function that doesn't crash browser

I have a program that involves the following function for calculating all the possible combinations of a given array: function combinations(arr, k) { var i, subI, sub, combinationsArray = [], next; ...
1
vote
1answer
538 views

What is the fastest way to find integer square root using bit shifts?

I was looking for the fastest method to calculate the square root(integer) of a number(integer). I came across this solution in wikipedia which finds the square root of a number(if its a perfect ...
1
vote
3answers
274 views

jQuery selector efficiency

I have a quick Bing and can't really find the answer. If I have a whack of code that uses $('something here') 150 times, would it be more efficient to: var item = $('something here') Pretty silly ...
0
votes
2answers
103 views

Creating memory efficient objects in Objective-C

Suppose I have a Contact object with a name and photo only @interface Contact: NSObject { NSString *name; UIImage *photo; } @property (copy) NSString name; @property (copy) UIImage photo; ...
1
vote
3answers
182 views

Is it theoretically possible in Java to embed reference types directly in an array?

There are cases when one needs a memory efficient to store lots of objects. To do that in Java you are forced to use several primitive arrays (see below why) or a big byte array which produces a bit ...
6
votes
6answers
528 views

what's more efficient? to empty an object or create a new one?

how expensive is 'new'? I mean, should I aim at reusing the same object or if the object is 'out of scope' it's the same as emptying it? example, say a method creates a list: List<Integer> ...
4
votes
1answer
781 views

NSScrollView infinite / endless scroll | subview reuse

I'm searching for a way to implement something like reusable cells for UI/NSTableView but for NSScrollView. Basically I want the same like the WWDC 2011 video "Session 104 - Advanced Scroll View ...
1
vote
1answer
167 views

Optimizing rails query and associations

I have the following associations in my application: # user.rb has_many :posts, :dependent => :destroy has_many :likes, :dependent => :destroy # post.rb belongs_to :user has_many :likes, ...

1 2