Tagged Questions
The code-complexity tag has no wiki summary.
32
votes
28answers
2k views
How complex should code be?
I'm studying about algorithms which can help me write smaller but more complex code. Instead of writing 150 lines of if-else statements, I can design an algorithm that does it in 20 lines. The ...
11
votes
20answers
2k views
What's the HARDEST program you've written?
Just curious, I'm wondering what all you experienced programmers or newbies (like me) out there have done. So what's the HARDEST most complicated program you've written?
6
votes
4answers
156 views
C++ Templating vs Inheritence
I just realize how hard asking questions can be... Hopefully I can give examples that are both, sufficiently precise to demonstrate my problem and short enough not to mess everythind up... At least ...
6
votes
5answers
1k views
Reducing code complexity for GWT
I started learn GWT by example on google and my first conclusion is: too much code
Like this:
stocks.add(symbol);
stocksFlexTable.setText(row, 0, symbol);
stocksFlexTable.setWidget(row, ...
4
votes
2answers
106 views
What does O(logn) + O(n) mean?
I was just told by someone that my code should follow the complexity guideline of O(logn) + O(n). When prompted for clarification, I was presented with, "the complexity of the code :)" In any event, ...
3
votes
2answers
197 views
What are the parameters used to calculate complexity in SourceMonitor?
I recently started using SourceMonitor to review my (and others) code.
Though i understand other parameters judged by the tool, i don't know how does it calculates the complexity of the code. As in, ...
3
votes
3answers
2k views
Maintainability Index
I have come across the recommended values for a Maintainability Index (MI) as follows:
85 and more: good maintainability
65-85: moderate maintainability
65 and below: difficult to maintain with ...
1
vote
5answers
103 views
Measure code complexity of _changes_ to a codebase
I work as a contractor at a financial services company. I'm currently working on a project that has been ongoing for the last 2+ years. Up until recently, there was no/limited automated build/unit ...
0
votes
1answer
163 views
What is meant by code or algorithm complexity? How can we calculate it?
What is meant by code or algorithm complexity? How can we calculate it? What is the meaning of representation of complexity? I'm so confused by this term!