jmucchiello

4,941
Reputation
272 views

Registered User

Name jmucchiello
Member for 11 months
Seen Nov 26 at 2:23
Website
Location Edison, NJ
Age
Nov
25
comment Finding the index of an entry in a linked list in better than O(n) time…
You haven't really explained why the ordering must be contiguous. I also don't see why the skip list is overkill. To reduce time, you trade space. That's how algorithmic processing works.
Nov
24
comment Benefits of exporting a class from a dll vs. static library
That is not 100% correct. A global var in a DLL is instanced per process. You can, with pragmas/linker tricks create system globals but that is not the default. It was as William says in Win3.1 but that changed in Win95/NT.
Nov
21
comment Python sudoku programming
update() should be easy to refactor. :)
Nov
21
comment Are ASCII characters always encoded the same way in all character encodings?
'abc' could also be '97 0 98 0 99 0' in UTF-16. You need a BOM to determine endianness.
Nov
21
comment Safe Delete in C++
I mildly disagree with your first sentence. Agnostic collections might be preferred but Boost.Intrusive shows that sometimes the object knows about the collection it is in.
Nov
21
revised Safe Delete in C++
missed shareprice in the stock dtor.
Nov
21
accepted Safe Delete in C++
Nov
21
answered Safe Delete in C++
Nov
20
comment What’s An Algorithm or code for obtaining ordinal position in a list sorted by value in c++
O(log N): Only if your tree is always balanced. In which case you need to factor in the time to rebalance the tree after every insert.
Nov
20
comment Effective Interpreted Programming Language for File/Image manipulation
This sounds like a job for imagemagic and bash.
Nov
19
answered [C++] Enum declaration inside a scope that is a parameter of a macro.
Nov
19
comment [C++] Enum declaration inside a scope that is a parameter of a macro.
How do you register a namespace?
Nov
19
comment C++ Comparing Member Function Pointers
I've rewritten my answer. I don't know what I was thinking.
Nov
19
revised C++ Comparing Member Function Pointers
Completely restructured answer
Nov
19
comment The First App You Write in a New Language
Traditional? I know no one who would start there.
Nov
19
comment C++ Comparing Member Function Pointers
The work around is as I suggested, which is to implement the member function pointer as a functor.
Nov
19
answered C++ Comparing Member Function Pointers
Nov
19
answered Possible to Use typeid to Determine Parent-Child Relationship
Nov
18
comment Any way to create a PDF so the text can’t be copied/extracted back out?
Don't put email addresses in the PDF.
Nov
18
comment Best way to return early from a function returning a reference
Adrian: if throw an exception is not the best choice then the function should not return a reference. Have it return something else or pass a non-const reference in to the function to be modified.
Nov
18
comment Best way to return early from a function returning a reference
I like this answer. The flag tells you if the passed object was modified.
Nov
18
comment Are you using C++0x today?
That is my answer. I don't know anyone named Patrick at work so that means changing company is not cut and dried...
Nov
18
comment Why should exceptions be used conservatively?
And all those whys have long lists of caveats which was my answer. There is no real why beyond broad experience in programming. There are some rules of thumb that go beyond why. The same rule of thumb can cause "experts" to disagree on why. You yourself take "performance" with a grain of salt. That would be my top of list. Flow control analysis doesn't even register with me because (like "no goto") I find flow control issues overstated. I'll also point out that my answer attempts to explain HOW you use the "trite" answer.
Nov
17
comment When do you know it is time to start looking for another job?
Of course, this is closing the barn door after the horses have escaped.
Nov
17
comment I need high performance. Will there be a difference if I use C or C++?
I find Johannes' opinion of virtual functions dated. In 1989, virtual function were slightly slower than direct calls, enough that you would notice in a tight loop. But in 2009 that is not the case.
Nov
17
comment Why should exceptions be used conservatively?
I acknowledged that in my response. There is no explicit why. Rules of thumb are vague by definition. If there were an explicit why, it would be a rule and not a rule of thumb. Every explanation in every other answer above contains caveats so they don't explain why either.
Nov
17
answered Why should exceptions be used conservatively?
Nov
17
comment Why should exceptions be used conservatively?
How does it know it's uncaught unless it unwinds the stack to find an catch block?
Nov
16
answered C++ Access to command line arguments outside main?
Nov
16
comment Why is Everyone Choosing JSON Over XML for jQuery?
That is still more non-whitespace chars than the JSON example. And parsing attributes can be more annoying in XML.
Nov
16
comment Access variables in C structures
As a heads up, don't name a struct WORD. That is a common #define for unsigned short. Long ago two bytes were called WORDs. It is a common define in library code, especially Windows code.
Nov
15
answered What are your experiences with Code::Blocks?
Nov
15
comment Distributed system design using only C
Look into the design of FTP. There is a protocol port where the client talks to the server. Only protocol data is sent over this connection. Data transfer takes place over a separate connection. This allows the server and client to react to changing conditions faster. As for total ordering of events that is impossible in a p2p design. It is also meaningless in a p2p protocol. If a sends to b and c sends to d does it matter which happens first?
Nov
14
comment Sending struct over TCP (C-programming)
Technically, the struct will always be received correctly assuming his protocol over the connection works correctly. The problem is not the receiving, it is the interpreting or perhaps you might call it the accessing.
Nov
14
comment Flexible library or server for board games (chess or others)?
Um, I thought vassal had no game rules programming. Am I confusing it with something else? I thought vassal gave you game pieces and you played the game exactly as if the pieces were physical. That is not very conducive to AI programming.
Nov
14
comment C: Correctly freeing memory of a multi-dimensional array
There's no reason for a down vote. I find the answer to many questions on SO is "you shouldn't do that, do this instead". There is room for answers to the letter of the question and answer to the meaning of the question.
Nov
14
comment Where can I get C/C++ sample code for merge sort a link list?
Is this homework?
Nov
14
answered marking duplicates in a csv file
Nov
13
comment Tables instead of DIVs
This is my problem with div layouts. Until you can make a set of divs that automatically flow like tables do I find it strange to recommend divs over tables.
Nov
13
comment Display message in windows dialogue box using “cout” - C++
Have him log in here so we can tell him IT IS NOT POSSIBLE using cout.
Nov
13
awarded  Notable Question
Nov
13
answered Distributed system design using only C
Nov
13
comment One Line ‘If’ or ‘For’…
What part of example didn't you understand? Every code fragment does not need to declare all of its variables.
Nov
13
answered Cross compiler exception handling - Can it be done safely?
Nov
13
revised In C++ is “const” after type ID acceptable?
added 440 characters in body
Nov
13
answered In C++ is “const” after type ID acceptable?
Nov
13
answered How Much Designing Should Go On Before Any Coding Takes Place?
Nov
12
asked Const correctness for value parameters
Nov
12
answered What are the most common naming conventions in C?
Nov
11
answered PHP json_decode question