User dsimcha - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T02:55:55Z http://stackoverflow.com/feeds/user/12879 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/113025/stable-efficient-sort 7 Stable, efficient sort? dsimcha 2008-09-22T03:23:39Z 2009-11-04T16:51:29Z <p>I'm trying to create an unusual associative array implementation that is very space-efficient, and I need a sorting algorithm that meets all of the following:</p> <ol> <li>Stable (Does not change the relative ordering of elements with equal keys.)</li> <li>In-place or almost in-place (O(log n) stack is fine, but no O(n) space usage or heap allocations.</li> <li>O(n log n) time complexity.</li> </ol> <p>Also note that the data structure to be sorted is an array.</p> <p>It's easy to see that there's a basic algorithm that matches any 2 of these three (insertion sort matches 1 and 2, merge sort matches 1 and 3, heap sort matches 2 and 3), but I cannot for the life of me find anything that matches all three of these criteria.</p> http://stackoverflow.com/questions/144661/python-vs-ruby-for-metaprogramming 22 Python Vs. Ruby for Metaprogramming dsimcha 2008-09-27T22:50:15Z 2009-09-28T22:08:47Z <p>I'm currently primarily a D programmer and am looking to add another language to my toolbox, preferably one that supports the metaprogramming hacks that just can't be done in a statically compiled language like D. I've read up on Lisp a little and I would love to find a language that allows some of the cool stuff that Lisp does, but without the strange syntax, etc. of Lisp. I don't want to start a language flame war, and I'm sure both Ruby and Python have their tradeoffs, so I'll list what's important to me personally. Please tell me whether Ruby, Python, or some other language would be best for me.</p> <p>Important:</p> <ol> <li>Good metaprogramming. Ability to create classes, methods, functions, etc. at runtime. Preferably, minimal distinction between code and data, Lisp style.</li> <li>Nice, clean, sane syntax and consistent, intuitive semantics. Basically a well thought-out, fun to use, modern language.</li> <li>Multiple paradigms. No one paradigm is right for every project, or even every small subproblem within a project.</li> <li>An interesting language that actually affects the way one thinks about programming.</li> </ol> <p>Somewhat important:</p> <ol> <li>Performance. It would be nice if performance was decent, but when performance is a real priority, I'll use D instead.</li> <li>Well-documented. </li> </ol> <p>Not important:</p> <ol> <li>Community size, library availability, etc. None of these are characteristics of the language itself, and all can change very quickly.</li> <li>Job availability. I am not a full-time, professional programmer. I am a grad student and programming is tangentially relevant to my research.</li> <li>Any features that are primarily designed with very large projects worked on by a million code monkeys in mind.</li> </ol> http://stackoverflow.com/questions/56315/d-programming-language-in-the-real-world/73985#73985 18 Answer by dsimcha for D Programming Language in the real world? dsimcha 2008-09-16T16:05:24Z 2008-09-16T16:05:24Z <p>I do bioinformatics work in D. For me, the key thing about D is that it takes a very level-headed approach to tradeoffs and recognizes the principle of diminishing returns. Unlike C++, which adheres rigorously to the zero-overhead principle, D allows features that may have a small performance/space cost if they make the language a lot more usable. These include garbage collection, a monitor object for each class, runtime type info, etc. Unlike Ruby, Python, PHP, etc., D tries to be almost as fast as C, even if it is less dynamic and slightly more difficult to program in than scripting languages. The result is a language that is optimal when both development time and execution time matter about equally, which in my field is most of the time.</p> <p>Similarly, D takes a very level-headed approach to safety vs. flexibility. It assumes that programmers basically know what they're doing, but do make mistakes. Unlike C and C++, it assumes that you don't want to use pointers, unsafe casts, manual memory management, etc. everywhere in your code because they're error prone, and assumes that you don't want to sift through multi-page template error messages when you screw up just to use resizable arrays. Unlike Java and other bondage-and-discipline languages, D assumes that sometimes pointers, unsafe casts, manual memory management, etc. are a necessary evil, and assumes you're smart enough to handle real templates, operator overloading, etc. without writing obfuscated code. It also assumes that you may screw up and access an array out of bounds, but that the programmer knows best what tradeoff should be made between safety and speed in any given situation. Therefore, whether arrays are bounds checked is simply determined by a compiler switch.</p> http://stackoverflow.com/questions/113025/stable-efficient-sort/121643#121643 Comment by dsimcha on Stable, efficient sort? dsimcha 2008-09-23T23:39:32Z 2008-09-23T23:39:32Z I agree with phyzome in general, big-O doesn't matter unless N has a decent chance of being large. However, what I'm trying to do is write a space-efficient associative array to fit large amounts of data in RAM, so the whole point is that N is huge. http://stackoverflow.com/questions/50066/impressions-of-d/50087#50087 Comment by dsimcha on Impressions of D? dsimcha 2008-09-23T02:46:42Z 2008-09-23T02:46:42Z Much better metaprogramming w/ static if, variadic templates, alias and string template parameters, compile-time function evaluation? Try writing a function that takes N arrays of arbitrary type, sorts the 1st, and sorts the rest in lockstep like PHP array_multisort. Easy in D, impossible in C++.