up vote 0 down vote favorite
share [g+] share [fb]

what's better? nNodes or nodeCount

link|improve this question
feedback

6 Answers

up vote 3 down vote accepted

The second, since it reads properly.

link|improve this answer
feedback

This is simply a style issue. I prefer nodeCount because I find it clearer. nNodes is more similar to Hungarian notation, but doesn't say it's a count variable.

link|improve this answer
If your code convention is that "nSomething" always stands for "number of somethings", you don't need to say again that it's a count variable. – ShreevatsaR Feb 14 '09 at 6:58
Yes @ShreevatsaR, I agree with you. But if there is no convention (yet) then nodeCount seems clearer (to me). – Hosam Aly Feb 14 '09 at 7:02
feedback

Whichever is consistent with the rest of your code base / style guide / dev team.

link|improve this answer
feedback

It really depends on the accepted naming conventions of whichever language you are using, but nodeCount is more readable. If you are using Java, you can use the Java Naming Conventions guide.

link|improve this answer
feedback

numNodes ?

link|improve this answer
feedback

The first one in C++, the second one in C#/Java.

Though this is really very subjective question and should be answered by your team/company guidelines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown