Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
7answers
1k views

C++ String Interview Question

I was recently in a C++ technical interview, where I was given a bit of simple string manipulation code, which is intended to take a string and return a string that is comprised of the first and last ...
8
votes
3answers
207 views

Reading in only part of a Stata .DTA file in R

I apologize in advance if this has a simple answer somewhere. It seems like the kind of thing that would, but I can't seem to locate it in the help files, by searching SO, or by Googling. I'm ...
7
votes
5answers
1k views

Best way to do binary arithmetic in C?

I am learning C and am trying to write a program that will take 2 value from a user and will check if these strings are binary values (composed of the characters 1 or 0 is how I approached it) before ...
3
votes
2answers
80 views

C++ How to merge sorted vectors into a sorted vector / pop the least element from all of them?

I have a collection of about a hundred or so sorted vector<int>'s Although most vectors have a small number of integers in them, some of the vectors contain a large (>10K) of them (thus the ...
3
votes
6answers
229 views

find pair of numbers in array that add to given sum

Question: Given an unsorted array of positive integers, is it possible to find a pair of integers from that array that sum up to a given sum? Constraints: This should be done in O(n) and in-place ...
3
votes
5answers
144 views

Alternative to using % operator and / Operator in C++

It is told that modulo operator "%" and divide operator "/" are very inefficient in embedded C++. How can I alternatively achieve the following expression: a = b % c; I understand that this can be ...
3
votes
5answers
132 views

Performance when reading a file line by line vs reading the whole file

Is there a noticeable difference (in theory) when reading a while line by line compared to reading the whole file in one go? Reading the whole file does have a negative impact on the amount of memory ...
3
votes
1answer
240 views

Multiple video sources combined into one

I am looking for an efficient way to do the following: Using several source videos (of approximately the same length), I need to generate an output video that is composed of all of the original ...
3
votes
2answers
96 views

Efficient Stopwatch

Hi I'm programming a stopwatch utility in javascript and I have a question about efficiency and overhead. There are two ways I have considered making the stopwatch: 1.Store a start Date and ...
3
votes
3answers
39 views

How do I efficiently make use of the result of a function call in a MySQL query multiple times without calling the function multiple times?

I have an SQL query like: SELECT blah FROM table WHERE field1 % functCall(otherField1, otherField2) = 0 OR field2 % functCall(otherField1, otherField2) = 0 OR field3 % ...
2
votes
1answer
62 views

Erlang: atoms or integers

I want to pass around a message as such {up, Distance} {down, Distance} I could also do this as such {1, Distance} {-1, Distance} The key difference is one is an atom and other an integer. ...
2
votes
1answer
131 views

write png quickly

Summary I want to write a .png file as quickly as possible, without a concern for compression. That is, I don't care much about the file size, but I do care that the write happens as quickly as ...
2
votes
2answers
178 views

Ruby on Rails: reverse lookup of array list of values

i have a model with a user selectable option that is set up in an array on the model. def Pie < ActiveRecored::Base def self.sel_options [ [ "Apple Blueberry", "AB" ], [ ...
2
votes
2answers
49 views

Am I taking the proper approach to dealing with these files? (CSV with PHP)

I am a student working on a placement for the summer. I have been given the task of dealing with data entry from excel to a SQL Server database for surveys that were carried out over a number of ...
2
votes
2answers
341 views

When doing IPC using TCP/IP sockets using the loopback address, do common networking stacks skip framing the message in lower-level PDUs?

In some environments such as Java, it's natural to use TCP/IP sockets to pass messages between processes on the same host using the 'localhost' address (127.0.0.1 in IPv4, or . (Because Java tends ...
2
votes
2answers
91 views

What is the most efficient way to determine if a point is in any number of boxes

I know how to check if a X,Y point is a single rectangular region, but say I have multiple regions that can potentially overlap ( the regions would have X,Y,Width,Height,Z-index ( or x1,y1,x2,y2 if ...
2
votes
7answers
472 views

most efficient way to get current time/date/day in C

What is the most efficient way of getting current time/date/day/year in C language? As I have to execute this many times, I need a real efficient way. I am on freeBSD. thanks in advance.
2
votes
3answers
131 views

Suitability of C# for clustered calculation-heavy apps?

I'm preparing to write a photonic simulation package that will run on a 128-node Linux and Windows cluster, with a Windows-based client for designing jobs (CAD-like) and submitting them to to the ...
1
vote
0answers
38 views

How to render Latex Equations as Images In Asp.Net

I have used Mathjax for displaying math Equations, but it takes much time to load. I need help in rendering LaTeX Equations as images while loading the page. How to do that in ASP.Net.
1
vote
1answer
32 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
5answers
115 views

Database efficiency - table per user vs. table of users

For a website having users. Each user having the ability to create any amount of, we'll call it "posts": Efficiency-wise - is it better to create one table for all of the posts, saving the user-id of ...
1
vote
4answers
189 views

c# fixed arrays - which structure is fastest to read from?

I have some large arrays of 2D data elements. A and B aren't equally sized dimensions. A) is between 5 and 20 B) is between 1000 and 100000 The initialization time is no problem as its only going ...
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
1answer
108 views

How facebook processing it's comments, mails and sms

This Question is regarding on How the Facebook process an activity.I just want to know how they are doing it so efficiently. When we Comment on facebook there are series of back ground process ...
1
vote
2answers
375 views

Some sort of Ruby “Interrupt”

So here's what I'm doing -- I have a ruby script that prints out information every minute. I've also set up a proc for a trap so that when the user hits ctrl-c, the process aborts. The code looks ...
0
votes
2answers
32 views

is X^n more efficient than X^(1/n)? (n being integer)

I'm guessing X^n is more efficient. Can anyone explain? Thanks.
0
votes
3answers
75 views

What is difference between Array and Binary search tree in efficiency?

I want know what is the best : Array OR Binary search tree in ( insert , delete , find max and min ) and how can I Improve both of them ?
0
votes
1answer
59 views

How I can implement delete code in my BST?

I have this code about binary search tree , I want Calculated efficancy for insert , delete and find max and min value in BST I make it for insert like that public static void main(String args[]) { ...
0
votes
2answers
64 views

efficiently interpret serial data

I'm working on a c++ project that reads MIDI-data from an external USB-device. The program is supposed to call certain functions depending on which fader/knob/button on the USB-device is ...
0
votes
2answers
58 views

Yii fetching records by type

I'm wondering if Yii has an efficient method for grouping items by type. Let's say I have the following model: Tag ------ id name type_id And let's say there are 5 different types of Tags. I ...
0
votes
3answers
134 views

Fastest way of putting array elements number of occurrences between limits

For example... I have an array of integers which is initialized by random values between 1 and 1000 Array has 1M elements (it will probably have much more, but this is only the example) Number of ...
0
votes
1answer
100 views

Battery consumption with custom animated drawable

Loooong time viewer, finally getting round to signing up here at StackOverflow! After a very long time searching for a way to do a scrolling background of a ViewGroup in Android, I've developed the ...
0
votes
1answer
24 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
1answer
42 views

Efficiency - function call in a conditional statement

If I have a bit of code looking like this: if(someInteger || somecomplexfunction() > 0) { // do something } Will the function be called if someInteger evaluates to true? p.s. compiling with ...
0
votes
3answers
75 views

Most efficient way to do this PHP script

I have any number of users in a database (this could be 100, 2000, or 3) what i'm doing is using mysql "show tables" and storing the table names in an array, then i'm running a while loop and taking ...
0
votes
1answer
78 views

Fastest way to fill pixels between two points with an ellipse-shaped brush?

Say I'm creating a raster-based paint program. My brush is ellipse-shaped. The user clicks and then drags the mouse to paint an area. I now have two points: pointA (where they clicked) and pointB ...
0
votes
3answers
198 views

C# 4.0, Most efficient way to determine if a string length != 0? Part 2

(My apologies, this is a 2nd post to http://stackoverflow.com/questions/3390175/most-efficient-way-to-determine-if-a-string-length-0 but I can't figure out how to reply to people's answers, my reply ...
0
votes
4answers
130 views

Efficient way of adding one character at a time from one string to another in Python

I'm currently making a function using pygame that draws a message on the screen, adding one character each frame (i.e. The Hunt for Red October). I know that I could simply copy (or pass) gradually ...
-1
votes
2answers
38 views

API is the best choice for doing task X? Or My Own Method? [closed]

In java, Groovy, C# there are several API's available. For example lets say there is an API X which does the job of sorting. And even I have the method of my own which does the job of API x. Which ...
-8
votes
4answers
779 views

Given an unsorted array, find any two elements in the array whose sum is equal to the sum entered by the user [closed]

A) Given an unsorted array, find any two elements in the array whose sum is equal to a number entered by the user. B) The procedure should use no more than constant storage beyond that needed for ...