0
votes
2answers
66 views

Is a calling a function pointer through a hash_map<string, fnPtr> more efficient or better style than multiple if/else if/else statements in C++?

I was going to make a switch statement, but then realized that it can't be done against a string. So I then wrote an if/else if/else statement and then realised that I shouldn't make my function so ...
0
votes
5answers
42 views

How a programmers solve the dilemma of using old variables instead of new variables?

For example: ... some code int sizeOfSomeObject = someObject.length(); ... some code, sizeOfSomeObject is not need anymore now I need other int variable for other action(for example, for position ...
-2
votes
1answer
74 views

recursion Vs. Iteration - Pros & Con's [duplicate]

What (if any) advantages/disadvantages, does recursion have versus iteration? Is one better than the other? If so, why? Is one worse than the other? I'm looking to get a general pro's versus con's ...
0
votes
2answers
33 views

what is stl-style for merge two containers while alternating the elements?

What is an elegant way to do the following in STL-style rather then for(;;): Given p={1,2,3} and q={7,8,9}, i'd like to merge this to be pq={1,7,2,8,3,9}. one application is creating pq vector for ...
1
vote
1answer
44 views

Does JVM manage class code by function? Is splitting a large decision function effective on memory usage?

Problem In a server-based java solution we need a bigger lookup table with static values (about 300 kB but the data increases yearly with new values for the next year). Usually the table would be ...
5
votes
5answers
100 views

Does an else statement slow compile time/run speed? (In situations where one could be avoided)

On innumerable (well, numerable, but many) occasions, especially within a method/function of a class, I've been in a situation where I want to do a set of operations within a void-return function, but ...
2
votes
1answer
122 views

Simple indeterminate progress bar in Python [closed]

Even when I am afraid to be a bit off-topic, but I am not sure where else to ask this, sorry! I wish to build a **simple** indeterminate progress bar in Python there is a really valid progression ...
0
votes
4answers
61 views

append in a list in Python using result value or a function

are the both approaches equivalent from a point of view of performance and coding-style? def foo(n): return n*2 # case 1 with ".append(function())" mylist = [1,2,3,4,5,6,7,8,9,10] result = ...
3
votes
3answers
84 views

Are long variable names a waste of memory?

If I have an variable int d; // some comment. Will that be better than int daysElapsedSinceBlahBlahBlahBlah with no comment. It is more reabale, but will it waste memory?
0
votes
2answers
73 views

combine two loops in python

suppose to have two polygons p1 and p2, where p2 is completely inside p1 p1 = [(0, 10), (10, 10), (10, 0), (0, 0)] p2 = [(2, 6), (6, 6), (6, 2), (2, 2)] degree_of_contact = 0 xyarrays = [p1,p2] ...
0
votes
2answers
69 views

python - When function need to became a class

I am learning the use of class in Python. Typically I write several function to run my script, but recently i am writing using class. I am sorry for the basic question, but when is the limit to use a ...
1
vote
1answer
108 views

using @property to build a class in Python

I am not clear on the use of @property (advantages and disadvantages). I want to ask for some example using this class built with the help of Martijn. The data (in text format) always has a x,y, and ...
2
votes
2answers
46 views

Resolving how to give an attribute in a class in Python

I have the following class: class Point(object): __slots__= ("x","y","z","data","classification") def __init__(self,x,y,z,n=None): self.x = float(x) self.y = float(y) ...
3
votes
2answers
104 views

Using len() and def __len__(self): to build a class

Just curious, Is there any difference (advantages and disadvantages) between using len() or def __len__() when I build a class? And which is the best Python style? class foo(object): def ...
0
votes
1answer
69 views

Python: resolve problems with my Class [closed]

I have the following class def get_percentile(obs,*args): lstper = [] for arg in args: lstper.append(np.percentile(obs,arg)) return lstper get_percentile([1,2,3,4,5],25,50,75) ...
0
votes
1answer
41 views

how to build a function in order to process single iterable or two or more argument

i have the following function example (average of a list of number): def avg(obs): return (1. / len(obs)) * np.sum(obs) avg([1,2,3,4,5]) 3.0 I am interesting t understand how use a single ...
0
votes
1answer
54 views

Python suggestion how to improve my class using nested function

I am working on my own class metric import numpy as np class Metric(object): def __init__(self,*args): self.min = min(args) self.max = max(args) self.median = ...
0
votes
2answers
116 views

Refactoring iOS code: Decreasing the number of lines of code

First time I'm posting a question here with a code that actually works! However, I believe there is a way to decease the number of lines in code. I'm hoping a guru can show me the way. Here is ...
0
votes
2answers
39 views

Preprocessor flags vs. (e.g.) boolean flags

I'm familiarizing myself with a scientific hydrodynamics code. The code almost always uses preprocessor directives, e.g. #ifdef PARTICLES int nghost = 5 #else int nghost = 4 #endif instead ...
2
votes
3answers
119 views

Simplify and reduce the amount of code without using macros [closed]

Sometimes, there are situations where the repetition of simple code blocks is unavoidable. To illustrate, with this example code: Note: this code is for illustration purpose only, real-life code is ...
1
vote
0answers
63 views

Need some advice and feedback on my code [closed]

My intent is to use bash functions defined in functions.sh in a C program. I am doing this so that I don't have to rewrite the bash functionality again in C. I want to use one common library for ...
2
votes
4answers
110 views

Python: How to find most common elements of a list of files

first of all sorry for the easy question, but i cannot figure out the easiest way to code my problem. I have a directory with several different file but with common elements (the values_25,_26,_28, ...
1
vote
0answers
59 views

How to keep track of logic flow in huge volume of codes

I am creating a statistics page for My website which bring reports in form of charts.It have a JavaScript file which has some 500 to 800 lines of codes and sends nearly 5 to 8 ajax request to fetch ...
0
votes
4answers
58 views

python: elegant and code saving way to convert a list

First of all sorry for the easy question. I have a list (just an example) points = [[663963.7405329756, 6178165.692240637], [664101.4213951868, 6177971.251818423], [664099.7474887948, ...
2
votes
1answer
74 views

Python: suggestion how to improve to write in streaming text file in Python

I am studying how to write in streaming strings as files in python. normally i use an expression as myfile = open("test.txt", w) for line in mydata: ... myfile.write(line + '\n') ...
1
vote
1answer
70 views

Refactoring and optimization [closed]

To me refactoring is mainly for the humans that will read and maintain the code after it is written. But in the wikipedia article for refactoring it says: Advantages include improved code ...
0
votes
4answers
77 views

Python: elegant and save coding way to create several list

Normally in order to store result in several lists in python, i create before the loop the corresponding empty lists. A = [] B = [] c = [] D = [] E = [] F = [] for i in range(100): # do some stuff ...
0
votes
4answers
115 views

Select maximum value in a list and the attributes related with that value

I am looking for a way to select the major value in a list of numbers in order to get the attributes. data [(14549.020163184512, 58.9615170298556), (18235.00848249135, 39.73350448334156), ...
2
votes
8answers
115 views

Python: elegant and code saving way to split an string in a list

i have a string as: mydata 'POINT (558750.3267372231900000 6361788.0628051758000000)' i wish a code saving way to convert in a list numeric as (g, (x,y)) where: g = geometry (POINT) x = ...
0
votes
4answers
120 views

Why isn't this valid Java?

Surely this should be valid Java? Have I got the syntax slightly wrong? return (url != null) ? url : (throw new NotFoundException("No url")); If not I suppose I'd have to do this: if(url == null) ...
0
votes
1answer
125 views

Procedure for making GUI based applications

Is there any method to be followed before writing code for a GUI program? For previous programs, i had algorithm and/or class diagrams before writing code for the normal programs(those done before ...
0
votes
3answers
78 views

Squeezing Code? [closed]

Let's say I want to pop objects out of a stack and check their state, whether it's FUP (facing up) or not. I want to keep doing this until I reach a point where the stack is empty OR an instance's ...
2
votes
3answers
126 views

List comprehension with if-condition

The following line of Python code values = ", ".join(["\"%s\"" % x for x in row]) takes a list of elements in "row" to create a comma-separated string "values", while each value is put in double ...
0
votes
5answers
164 views

Using floating curly braces to free variables early in C#

C# variables are instantiated where the type is declared (eg string s;) and freed at the closing brace of the current scope: // Operates with Q memory void FantasyMethod() { var o = new ...
2
votes
4answers
45 views

jQuery dry optimization

Hello i want to ask how can i optimize that code: $('#infoTrigger0').live('click', function() { $('#info0').slideToggle(); }); $('#infoTrigger1').live('click', ...
2
votes
3answers
74 views

Coding Style: function calls inside statements

Ok, first of all, i suspect this is going to be closed. Right, i have a question relating to using function calls inside statements as opposed to assigning to a variable first. For example: (code ...
61
votes
7answers
3k views

What is the gain from declaring a method as static

I've recently been looking through my warnings in Eclipse and come across this one: It will give a compiler warning if the method can be declared as static. [edit] Exact quote within the Eclipse ...
0
votes
3answers
195 views

Pros and cons of Java Iterable

Java methods accepting and returning Iterable<T> types are very common. The problem I see is that the Iterator interface is so limited, that it either requires one to reconstruct the Iterable ...
-1
votes
1answer
126 views

My big and ugly function - how to improve [closed]

I am trying to improve my coding style and I understand that my coding style is terrible. Could you suggest the WAYS of improving my function? public void polulateSpecs(int itemID, ...
1
vote
1answer
147 views

how to optimize search difference between array / list of object

Premesis: I am using ActionScript with two arraycollections containing objects with values to be matched... I need a solution for this (if in the framework there is a library that does it better) ...
0
votes
5answers
85 views

value range in negative and positive range until 0 with ternary operations?

I got an problem i'd like to solve. This expression works as long as x is positive x > 0 ? x - y : x + y; When it gets negative however this is where the problem begins. So i thought of x !=0 ...
2
votes
4answers
236 views

Attribute fields vs. attribute-value map

I have a (java) class with about 10 attributes, many of them potentially staying uninitialized and are not accessed during lifetime of an object. Therefore I'm considering using a ...
5
votes
3answers
159 views

How to write this better in perl

Given a large input file that looks like this: 02/26/2012 08:54:38 Error:java.sql.Exception 02/26/2012 08:54:48 Error:java.sql.Exception 02/26/2012 08:56:05 Error:java.sql.Exception 02/26/2012 ...
2
votes
2answers
51 views

What advantage is gained by placing a literal value on the LHS of a boolean expression?

I've noticed a subtle trend among some developers who consistently place the literal value of a boolean equality expression on the left hand side of the expression. Example: //Style #1, the style ...
3
votes
6answers
163 views

How would you go about optimizing(no code repetition) Java code which has many functions of this type

Code I inherited has many transaction code methods of this form: public void addCourseToCourses(String values) { try { conn.setAutoCommit(false); } catch (SQLException e) ...
1
vote
1answer
123 views

is it always faster to store multiple class calls in a variable?

If you have a method such as this: float method(myClass foo) { return foo.PrivateVar() + foo.PrivateVar(); } is it always faster/better to do this instead?: float method(myClass foo) { ...
0
votes
2answers
60 views

How to refactor this GOTO (no resource deallocation involved)?

This is a simple control-flow GOTO question, nothing about resource allocation. There are two levels of checking if a piece of data is "good". If and only if it passes the first check, we do the ...
3
votes
7answers
304 views

HUGE .cpp file better than reading from text file?

Is it a legitimate optimisation to simply create a really HUGE source file which initialises a vector with hundreds of thousands of values manually? rather than parsing a text file with the same ...
5
votes
2answers
978 views

Optimization trick, does it really work?

While looking at some questions on optimization, this accepted answer for the question on coding practices for most effective use of the optimizer piqued my curiosity. The assertion is that local ...
3
votes
3answers
1k views

SQL: Best way to compare the end of a string, use RIGHT, LIKE or other?

I need to compare the end of strings against a list of possible ending in a stored procedure. It will be called a lot and there are around 10-15 candidate endings. At this point a code-only solution ...

1 2