The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
35 views

Compare-Object Powershell performance and Operation VS Loop

I was looking at this question where the OP wanted to know how to compare items in two arrays without looping through each array. The command given was: $array3 = @(Compare-Object $array1 $array2 | ...
0
votes
0answers
18 views

How exactly does java animation work?

Forgive me for asking a rather amateur question, but through some research I've met a challenging road block in progress. I looked into it on the site but I've been pretty unsuccessful in finding ...
1
vote
5answers
94 views

Counters that flip signs in java

Ok so im trying to make a program and i need to have the counter start at -3 and go down by 2, but every other number has to be a positive: for example: -3, 5, -7, 9, -11, 13, -15, 17, -19,... any ...
1
vote
3answers
50 views

C# with Database code simplication

I am working on a project centered around an Oracle database (though honestly I don't expect that to matter) and I find myself have a fair amount of duplicate code, specifically exceptions. The best ...
-2
votes
0answers
40 views

Getting started with a php object oriented backend system [closed]

Hello all you coding geniuses. I am working on a backend for an iPhone app in php and I'm trying to make the backend based on a object oriented system. I used to be totally inefficient and have a ...
-4
votes
1answer
58 views

Need help reducing triple for loop to increase efficiency

for (int i = 0; i < 3; ++i) { for (int k = 0; k < 7; ++k) { for (int h = i; h < 4 + i; ++h) { result = state.getAt(k, h); if (result == 1) { ...
1
vote
1answer
19 views

Looking for more efficient software zoom

I am using a C#, Winforms application with the Aforge library to pull video from a USB camera and manipulate that video. I am doing it by using the new frame event handler and posting that image into ...
0
votes
2answers
90 views

Total number of ways to write a positive integer as the sum of powers of 2 in efficient time

I've been looking at Number of ways to write n as a sum of powers of 2 and it works just fine, but I was wondering how to improve the run time efficiency of that algorithm. It fails to compute ...
0
votes
4answers
70 views

Is it inefficient to reference a hashmap in another class multiple times?

Class A Class A { public HashMap <Integer,Double> myHashMap; public A(){ myHashMap = new HashMap() } } class B Class B { private A anInstanceOfA; public B(A a) { ...
0
votes
3answers
47 views

How to I make this PHP function more efficient?

I want to find out a more efficient way of going about this function: <?php function zipError($title, $desc) { echo '<style type="text/css">'; echo 'body { ...
0
votes
0answers
54 views

GetJSON Javascript Array Efficiency

Probably a simple question, but I'm unsure how to do this. I have a JSON file which looks like this, obviously shortened but you get the idea: { "datapoints": [ { "lat": ...
0
votes
2answers
105 views

C++: most efficient algorithm to find all consecutive subsequences of given length in a sequence

I'm looking for an efficient algorithm to extract all subsequences of a given length from a given sequence over a fixed alphabet (lets say its 0,1,2,3) and also which sub sequences were read and which ...
1
vote
2answers
61 views

Delete Duplicate Records with Same Values

I have a TSQL statement that is taking several hours to run. I'm sure I need to look into the import process to avoid duplicates being inserted but for the time being I'd just like to remove all ...
4
votes
8answers
75 views

Java - looking for more efficient way to code class methods

I am creating a program that automates creation of player characters. Below is my PlayerCharacter class. I have noticed that I repeat many operations on different variables. public class ...
0
votes
0answers
11 views

Best way to loop through only borders of a cube? (marching cubes)

Marching cubes presents us with chunks of 16x16x16 cubes and similar, and it is very useful to be able to loop through just the borders of the chunks to speed up various routines. Take a 4x4x4 cube, ...
-3
votes
1answer
51 views

Improve R script efficency

I am trying to match two very big data (nsar & crsp) sets. My code works quite well but needs a lot of time. My procedure works the following way: Try match via ticker (thereby controlling that ...
-1
votes
3answers
108 views

Optimized Permutation Code in Java

This is a code that I got from internet. import java.util.ArrayList; import java.util.Calendar; import java.util.Collection; import java.util.HashSet; import java.util.List; import java.util.Set; ...
3
votes
3answers
80 views

Finding Matching Strings Algorithm

I have very long 5 strings(the number of strings may change).There is no fixed format for these strings. I will provide a number which will indicate the length of the substring. I want to find the ...
0
votes
1answer
42 views

Pulling 50 RSS feeds and checking uniqueness of posts against database [Efficiency Advice]

I want to pull several RSS feeds into a database as efficiently as possible. My site will scrape 50 RSS feeds every 4 hours - I only want to add unique posts to the database. I am a bit stuck on how ...
1
vote
2answers
70 views

Efficiency with nested for each loop through arrayLists of strings

having a problem. Efficiency. I know very little about efficiency in coding, but I'm learning. Searching through these arraylists of strings for item1 and when found adding item2 to a new arrayList. ...
0
votes
1answer
38 views

code efficiency, debugging, objects methods, arrays

I practicing more with objects, arrays, and methods. Right now I am writing a simple book keeping program to add a book, search books by title, author, price, inventory number, and genre. I have a ...
7
votes
8answers
229 views

What is better to use in Java? x <= 10 or x < 11?

Is there any difference affecting program efficiency between x <= 10 and x < 11 ? Are there any other differences? Thank you
0
votes
2answers
29 views

Which array syntax is more efficient?

I did not find similar question 1 $form['level1']['level2'][] = array( 'data' => 'some data', 'type' => 'some type', ); //etc 2 $form = array( 'level1' => array( ...
0
votes
2answers
80 views

Which one is efficient in terms of performance - Object of AppDelegate or Macro of AppDelegate?

We can use object of AppDelegate by these ways say... 1) AppDelegate *app; // Globally declared app = (AppDelegate*)[[UIApplication sharedApplication] delegate]; //Use this any where in app 2) ...
1
vote
2answers
35 views

How can I time processing of chunk of code using MT template language?

Often when developing a Movable Type template, I come up with multiple ways to generate the same result, and am curious which is more efficient. Or, I simply want to know how long something took, such ...
2
votes
4answers
84 views

Python: Make this code more compact?

How can I get rid of the excessive repetition in this code? Code: http://pastebin.com/13e2nWM9 The program calculates equations of motion (SUVAT Equations) based on data provided by the user. The ...
0
votes
2answers
42 views

Assign copies to pointers

So I'm having a little trouble with pointers and figuring out how to use them effectively. Say I have a case where I'm popping off "Node" objects from a stack in a while loop like so. while(...) { ...
0
votes
1answer
85 views

my solution to 2-sum is slow?

I'm working on the 2-sum problem and I think my solution is quite efficient but after I ran it, the program apparently took too long. Here is my code: public int[] twoSum(int[] numbers, int target) ...
0
votes
1answer
25 views

How do i calculate biggest case with a faster machine?

The question is : For a program requiring exactly n^2 "instructions" to handle an input case of size n and a machine on which the biggest input case that can be handled in an hour of computing time ...
3
votes
3answers
258 views

Alternative to Nested Switch Statements in Java

So I wrote a method today that incorporated the use of nested switch statements, and the code looked fairly clean and concise to me, but I was told that nested switch statements are not typically the ...
0
votes
0answers
52 views

c# EF5 syntax vs EF4 syntax efficiency to update an entity

I'm very new to the Entity Framework model and all I'm trying to do is update my IsActive flag in a user record to false. I'm using EF5 My question is simple (I think)... Which of these syntax is ...
0
votes
1answer
56 views

Inserting to database efficiently by removing repeated code

I have started working with Cassandra database recently. And I was trying to insert some data into one of my Column Family that I have created. Below is the code by which I am trying to insert into ...
1
vote
1answer
59 views

Efficeint way to manipulate multiple Checkbox items

I have a 6 JCheckBoxes in the UI and based one some user operations, I have to change the state of the JCheckBoxes, like enabling,selecting and making it invisible. So, instead of having the code as ...
0
votes
1answer
63 views

efficiency of rbind

I'm writing a script that has to build a large matrix. I want to take a vector of names for each name get data from a different data frame do some operations on it, and then return a vector of data ...
0
votes
5answers
106 views

Elegance vs efficiency | java [closed]

I'm new to Java and I'd like to know what is the better and conventional programming. When I want to change an existing object's attributes: One way is to simply set the values by the set functions, ...
1
vote
2answers
115 views

Most efficient way to solve SEVERAL linear systems Ax=b with SMALL A (minimum 3x3 maximum 8x8)

I need to solve thousands of time SMALL linear system of the type Ax=b. Here A is a matrix that is not smaller than 3x3 and maximum 8x8. I am aware of this ...
0
votes
3answers
165 views

Prime Tester for speed

I was given a homework assignment in Java to create classes that find Prime number and etc (you will see in code better). My code: class Primes { public static boolean IsPrime(long num) { ...
2
votes
1answer
91 views

where should I push the code for reading device unique ID in iOS?

I have the following code for reading the unique device id. Since this will be used in more than 20 different views (.m files), I'm just questioning myself that is there a cleaning and efficient way ...
2
votes
4answers
93 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 ...
1
vote
5answers
83 views

How does size( ) works in java's ArrayList class?

So, in order to get the most efficient code, I really wanted to know how does the size() method in Java ArrayList work... Does it count every element, going through all the positions, like a simple ...
0
votes
1answer
24 views

Efficient Command Line Parsing

I have programmed a small Java application for fun, and it all works well. My problem is that when I was working on my method to parse the command-line parameters, I just felt that there should be a ...
1
vote
2answers
102 views

Deleting in a heap, why does this implementation switch the values of the last element, not just replace it?

Problem 7 (6.5-7): The operation Heap-Delete ( A; i) deletes the item in node i from heap A . Give an implementation of Heap-Delete that runs in O (lg n) time for an n -element max-heap here's the ...
1
vote
0answers
80 views

Hibernate not able to load 10,000 objects

I want to load more than 10,000 objects through hibernate, but its not able to do so. It keeps no writing these lines in the log. Not closing pre-bound Hibernate Session after HibernateTemplate ...
1
vote
1answer
54 views

What's the most pythonic way to build this dictionary?

I want to create a dictionary such that letters in the first row of a QWERTY keyboard are given a value of one, keys in the home row are given a value of zero, and keys in the bottom row are given a ...
2
votes
2answers
73 views

Which for loop is more efficient in javascript? [closed]

Which one is more efficient? // < 11 for(var i = 0; i < 11; i++){ ... } or // <= 10 for(var i = 0; i <= 10; i++){ ... } I don't know exactly how the for function works but I'm ...
-8
votes
1answer
78 views

Which is more efficient? [closed]

There are many ways of dealing with strings like checking for null or empty, so i want to know which is more efficient in the case mentioned below String.IsNullOrEmpty(str); // or this str == null; ...
0
votes
0answers
42 views

store data & metadata in DOM or JS object ? which is performant?

I've a form with elements, I need to create a fieldset/sub forms with more elements for each of the main form element, dynamically based on a dropdown value. I need to take care of showing / hiding ...
2
votes
2answers
157 views

Efficiency of guava Table vs multiple hash maps

I ran across some code that was doing something like this: Map<String,String> fullNameById = buildMap1(dataSource1); Map<String,String> nameById = buildMap2(dataSource2); ...
2
votes
5answers
114 views

Is this efficient?

foreach (SessionTeacher sessionTeacher in sessionTeachers) { Person person = EMS.PWDAL.DALHelper.GetPersonByID(sessionTeacher.PersonID); ltrlSpeakers.Text += person.Name1 + ", "; } here ...
0
votes
1answer
53 views

Which is the Most Efficient Way to Run a Function on a Link Click

I have so many links in my webpage. About 25 links with an id="reply_x". About 20 links with id="quote_x" and some links with id="like_x". I have written different functions using JQuery for different ...

1 2 3 4 5 6