User OysterD - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T10:42:47Zhttp://stackoverflow.com/feeds/user/2638http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/34257/posting-programming-algorithmic-puzzles-on-so3Posting programming/algorithmic puzzles on SO [closed]OysterD2008-08-29T09:34:43Z2009-10-10T23:37:41Z
<p>I was wondering if:</p>
<ol>
<li>it's OK to post these (properly tagged as 'puzzle's of course), knowing that it's not a 'real question' in the sense that the one who asks (usually) knows the answer?</li>
<li>others would be interested?</li>
</ol>
<p>Edit:</p>
<p>@Rob Cooper:</p>
<ul>
<li>the 'puzzle' tag (or some other...) could be used just to identify these questions I guess, so that it would be clear to everyone;</li>
<li>is there really always a need to pick a 'best answer'? Note that lots of questions being asked are quite subjective in nature, and do not have any 'best answer'...</li>
</ul>
http://stackoverflow.com/questions/26663/whats-your-favorite-profiling-tool-for-c16What's your favorite profiling tool (for C++)OysterD2008-08-25T19:09:08Z2009-09-22T07:18:32Z
<p>So far, I've only used Rational Quantify. I've heard great things about Intel's VTune, but have never tried it!</p>
<p>Edit: I'm mostly looking for software that will instrument the code, as I guess that's about the only way to get very fine results.</p>
<p><hr /></p>
<h3>See also:</h3>
<p><a href="http://stackoverflow.com/questions/153559/what-are-some-good-profilers-for-native-c-on-windows">What are some good profilers for native C++ on Windows?</a></p>
http://stackoverflow.com/questions/25227/your-feeling-about-brainteaser-based-interviews4Your feeling about 'brainteaser'-based interviewsOysterD2008-08-24T17:50:23Z2009-08-25T00:36:12Z
<p>...either as interviewer and/or interviewee!</p>
<p>I know lots of people are against them. I'm quite fond of brainteasers (math/CS-based, and I certainly prefer those which don't require any specialized knowledge). </p>
<p>In my line of work, 'problem solving' is quite an important requirement when looking for new hires and I think brainteasers <em>can</em> be a good tool. However, there are a few problems with them:</p>
<ul>
<li>it's hard to find an original brainteaser (there's no point reusing over and over again the same brainteasers, as candidates will just get the 'list');</li>
<li>it's hard to find a brainteaser which is quite 'open', from which a conversation can start with a candidate (I really dislike those which have a 'trick', and much prefer those which have different solutions, extensions,...);</li>
<li>using one (or more) brainteasers in an interview process tends to take (a lot of) time;</li>
<li>some people are so much stressed during a job interview that they sometimes even lack the self-confidence needed to just 'have a go'.</li>
</ul>
<p>As an interviewee, I have to say that being given brainteasers that I found interesting during the interview process is one of the reasons I chose my current employer!</p>
<p>So, what are your thoughts/advice on the use of brainteasers?</p>
http://stackoverflow.com/questions/26771/rewarding-code-projects-for-complete-beginners5Rewarding code projects for *complete* beginnersOysterD2008-08-25T20:21:18Z2009-01-07T13:27:30Z
<p>Courses for people who are being introduced to programming very often include a code project, which I think is a nice way to learn. However, such projects often feel too artificial, and are thus not very rewarding to work on.</p>
<p>What are your ideas of rewarding code projects? (Preferably easy to begin, and extendable at will for the more advanced!).</p>
<p>Edit:</p>
<p>@Mark: thanks for the link, though I'm more interested in projects for people who are completely new to programming (the link seems to refer more to people who are already proficient in at least one language, and trying to learn a new one -the typical SO audience I'd say :) -).</p>
<p>@Kevin, Vaibhav, gary: I was thinking of people who are learning programming through one language, so at the beginning of the course some don't know anything about control structures (and even less about any kind of syntax). However, I was thinking in quite a large project (typically in the 1k-10k lines of code range, possibly in groups of 2 or 3 students). This is what was done at my school for the complete beginners, and it sure seemed to work for them... except that most of them found their projects quite boring to work on!</p>
http://stackoverflow.com/questions/28080/how-bad-is-dynamic-casting2How bad is dynamic casting?OysterD2008-08-26T13:49:47Z2008-11-19T21:38:56Z
<p>We often hear/read that one should avoid dynamic casting. I was wondering what would be 'good use' examples of it, according to you?</p>
<p>Edit:</p>
<p>@Sam: yes, I'm aware of that other thread: it is indeed when reading one of the first answers there that I asked my question!</p>
http://stackoverflow.com/questions/31867/are-there-any-examples-where-we-need-protected-inheritance-in-c8Are there any examples where we *need* protected inheritance in C++?OysterD2008-08-28T08:52:55Z2008-11-11T10:11:08Z
<p>While I've seen rare cases where <em>private</em> inheritance was needed, I've never encountered a case where <em>protected</em> inheritance is needed. Does someone have an example?</p>
http://stackoverflow.com/questions/26452/visual-studio-2005-shortcuts/26467#264673Answer by OysterD for Visual Studio 2005 ShortcutsOysterD2008-08-25T17:30:32Z2008-11-03T18:15:26Z<p>I keep a link to Jeff's <a href="http://www.codinghorror.com/blog/files/Visual%20Studio%20.NET%202005%20Keyboard%20Shortcuts.htm" rel="nofollow">shortcuts page</a>, and refer to it to learn the shortcuts for all tasks I find myself regularly doing. I also use VisualAssist, and use a lot of:</p>
<ul>
<li>toggling between .h and .cpp files (yes, I code in C++ :) ) (Alt-o);</li>
<li>going to the definition of sthing (Alt-g).</li>
</ul>
http://stackoverflow.com/questions/40485/optimizing-conways-game-of-life1Optimizing Conway's 'Game of Life'OysterD2008-09-02T20:15:13Z2008-10-01T17:45:13Z
<p>To experiment, I've (long ago) implemented Conway's Game of Life (and I'm aware of <a href="http://beta.stackoverflow.com/questions/1823/writing-a-conways-game-of-life-program" rel="nofollow">this</a> related question!).</p>
<p>My implementation worked by keeping 2 arrays of booleans, representing the 'last state', and the 'state being updated' (the 2 arrays being swapped at each iteration). While this is reasonably fast, I've often wondered about how to optimize this.</p>
<p>One idea, for example, would be to precompute at iteration N the zones that <em>could</em> be modified at iteration (N+1) (so that if a cell does not belong to such a zone, it won't even be considered for modification at iteration (N+1)). I'm aware that this is very vague, and I never took time to go into the details...</p>
<p>Do you have any ideas (or experience!) of how to go about optimizing (for speed) Game of Life iterations?</p>
http://stackoverflow.com/questions/38427/tips-for-working-in-a-large-library4Tips for working in a large library?OysterD2008-09-01T21:00:01Z2008-09-30T12:35:55Z
<p>I'm currently working on a quite large library (5M lines of code, in C++ under VS2005, 1 solution and close to 100 projects). Even though we distribute compilation, and use incremental linking, recompilation and relinking after small source modifications takes between a few minutes (usually at least 3) and close to one hour.</p>
<p>This means that our modify code/build/debug cycles tend to be really long (to my taste!), and it's quite easy to lose the 'flow' during a build: there's typically not much time to do anything useful (maybe do a bit of email, otherwise read some article online or a few pages of a book).</p>
<p>When writing new code or doing major refactoring, I try to compile one file at a time only. However, during debugging for example, it really gets on my nerves!</p>
<p>I'm wondering how I could optimize my time? I guess I'm not the only one in that situation: what do/would <em>you</em> do?</p>
http://stackoverflow.com/questions/43224/how-do-i-calculate-a-trendline-for-a-graph/43227#432270Answer by OysterD for How do I calculate a trendline for a graph?OysterD2008-09-04T05:50:06Z2008-09-04T05:59:48Z<p>I'm not too sure I understand what you mean by 'trendline' here... Could you please specify a bit (available input, required output)?</p>
<p>Edit: is <a href="http://en.wikipedia.org/wiki/Linear_regression" rel="nofollow">linear regression</a> what you're after?</p>
http://stackoverflow.com/questions/41799/recommended-resources-for-computer-science-theory/41841#418413Answer by OysterD for Recommended resources for computer science theory.OysterD2008-09-03T14:49:44Z2008-09-03T15:04:57Z<p>A very nice book about these topics is Papadimitriou's <a href="http://rads.stackoverflow.com/amzn/click/0201530821" rel="nofollow">Computational complexity</a>. Not so much on discrete mathematics in this one, though...</p>
<p>I would really <strong>not</strong> recommend Knuth's TAOCP in this context: to me, it's more a reference book that one you read front to back! (And it's quite frustrating as a reference, as a lot of interesting results are 'left as exercises'...)</p>
http://stackoverflow.com/questions/41590/how-do-you-properly-use-namespaces-in-c/41637#416374Answer by OysterD for How do you properly use namespaces in C++?OysterD2008-09-03T13:17:11Z2008-09-03T13:17:11Z<p>Also, note that you can add to a namespace. This is clearer with an example, what I mean is that you can have:</p>
<p><code>namespace MyNamespace
{
double square(double x) { return x * x; }
}</code></p>
<p>in a file square.h, and</p>
<p><code>namespace MyNamespace
{
double cube(double x) { return x * x * x; }
}</code></p>
<p>in a file cube.h. This defines a single namespace <code>MyNamespace</code> (that is, you can define a single namespace across multiple files).</p>
http://stackoverflow.com/questions/18642/what-is-the-most-unreadable-programming-language/41240#412400Answer by OysterD for What is the most unreadable programming language?OysterD2008-09-03T06:17:09Z2008-09-03T06:17:09Z<p>Some that were forgotten:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/SKI_combinator_calculus" rel="nofollow">SKI combinators: some sample code is available <a href="http://99-bottles-of-beer.net/language-ski-combinator-calculus-696.html" rel="nofollow">here</a> :)</li>
<li><a href="http://www.madore.org/~david/programs/unlambda/" rel="nofollow">Unlambda</a> (related to the above): the link also contains code to compute and display Fibonacci numbers in Unlambda, as well as a few quines</a>...</li>
</ul>
<p>By the way, have you ever had to write 'programs' for a single band <em>Turing machine</em>? A professor I had (in complexity theory) had us do that (with pen and paper <em>of course</em>). Not that fun, and not that readable either!</p>
http://stackoverflow.com/questions/20448/what-is-the-most-brilliant-regex-youve-ever-used/40789#40789-2Answer by OysterD for What is the most brilliant regex you've ever used?OysterD2008-09-02T22:07:06Z2008-09-02T22:07:06Z<p>@Pat:</p>
<p>There's no such thing as a regexp testing for primality. Note that it has (quite) recently been proven that PRIMES is in the P class (thanks to the <a href="http://en.wikipedia.org/wiki/AKS_primality_test" rel="nofollow">AKS</a> algorithm). It is not, however, known to be regular (yet!).</p>
<p>Was it a joke?</p>
http://stackoverflow.com/questions/39395/how-do-i-calculate-pi-in-c/40690#406900Answer by OysterD for How do I calculate PI in C#?OysterD2008-09-02T21:13:53Z2008-09-02T21:13:53Z<p>@Thomas Kammeyer:</p>
<p>Note that Atan(1.0) is quite often hardcoded, so 4*Atan(1.0) is not really an 'algorithm' if you're calling a library Atan function (an quite a few already suggested indeed proceed by replacing Atan(x) by a series (or infinite product) for it, then evaluating it at x=1.</p>
<p>Also, <strong>there are very few cases where you'd need pi at more precision than a few tens of bits</strong> (which can be easily hardcoded!). I've worked on applications in mathematics where, to compute some (quite complicated) mathematical objects (which were polynomial with integer coefficients), I had to do arithmetic on real and complex numbers (including computing pi) with a precision of up to a few million bits... but this is not very frequent 'in real life' :)</p>
<p>You can look up the following example <a href="http://gmplib.org/pi-with-gmp.html" rel="nofollow">code</a>.</p>
http://stackoverflow.com/questions/40533/how-do-you-settle-tabs-vs-spaces-in-the-office/40573#405730Answer by OysterD for how do you settle tabs vs spaces in the office?OysterD2008-09-02T20:36:40Z2008-09-02T20:36:40Z<p>By default, tabs in our IDE (for C++) get expanded to 4 spaces.</p>
<p>Other than that, some of us also use Haskell, and since it is <strong>whitespace sensitive</strong>, tabs vs whitespace is a pain. The official policy is never to use tabs (however, this is not yet enforced by scripts or anything).</p>
<p>Doing maintenance on Haskell code that uses tabs is a nightmare: you copy and paste, not knowing that you selection includes tabs, and then the code ceases to compile with not-so-easy to get error messages...</p>
http://stackoverflow.com/questions/39395/how-do-i-calculate-pi-in-c/39491#394912Answer by OysterD for How do I calculate PI in C#?OysterD2008-09-02T13:20:01Z2008-09-02T19:57:55Z<p>Good overview of different algorithms:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Computing_%CF%80" rel="nofollow">Computing pi</a>;</li>
<li><a href="http://en.wikipedia.org/wiki/Gauss%E2%80%93Legendre_algorithm" rel="nofollow">Gauss-Legendre-Salamin</a>.</li>
</ul>
<p>I'm not sure about the complexity claimed for the Gauss-Legendre-Salamin algorithm in the first link (I'd say O(N log^2(N) log(log(N)))).</p>
<p>I do encourage you to try it, though, the convergence is <em>really</em> fast.</p>
<p>Also, I'm not really sure about why trying to convert a quite simple procedural algorithm into a recursive one?</p>
<p>Note that if you are interested in performance, then working at a bounded precision (typically, requiring a 'double', 'float',... output) does not really make sense, as the obvious answer in such a case is just to hardcode the value.</p>
http://stackoverflow.com/questions/39029/is-latex-used-outside-mathematics-and-academia/39334#393341Answer by OysterD for Is LaTeX used outside mathematics and academia?OysterD2008-09-02T12:02:14Z2008-09-02T12:02:14Z<p>@Konrad Rudolph: I quite agree with your answer, and I'm not trying to <em>compare</em> LaTeX with Word. I'm just saying that for some tasks (documentation writing in my example), some people typically choose between LaTeX -outputting in PDF- and Word.</p>
http://stackoverflow.com/questions/38974/tool-to-check-doxygen-markup-is-up-to-date1Tool to check Doxygen markup is up to dateOysterD2008-09-02T07:23:14Z2008-09-02T10:12:49Z
<p>I'm using Doxygen to generate documentation for my (C++) code, and am wondering if there is a tool that would give me a list of all functions/methods for which the current Doxygen markup doesn't describe all the arguments (or describes too many)? Maybe this is already included in Doxygen? (in which case I couldn't find the feature !)</p>
http://stackoverflow.com/questions/39029/is-latex-used-outside-mathematics-and-academia/39046#390468Answer by OysterD for Is LaTeX used outside mathematics and academia?OysterD2008-09-02T08:45:34Z2008-09-02T08:45:34Z<p>Still quite mathematical, but also in the industry: I work in a bank, and we use LaTeX to</p>
<ul>
<li>write internal documentation (some use LaTeX, some use Word);</li>
<li>write description of financial products (the LaTeX code is generated automatically, so typically the user only sees a PDF).</li>
</ul>
<p>Note that lots of people use LaTeX to write books (not necessarily technical books!).</p>
http://stackoverflow.com/questions/38502/whats-a-good-algorithm-to-generate-a-maze/38507#385072Answer by OysterD for What's a good algorithm to generate a maze?OysterD2008-09-01T22:00:57Z2008-09-01T22:00:57Z<p>Strangely enough, by slightly changing the 'canonical' rules and starting from a random configuration, Conway's Game of Life (I don't know why my Wikipedia link is not working!) seems to generate pretty nice mazes!</p>
<p>(I don't remember the exact rule, but it's a very simple modification that tends to 'densify' the population of cells...)</p>
http://stackoverflow.com/questions/38427/tips-for-working-in-a-large-library/38462#384620Answer by OysterD for Tips for working in a large library?OysterD2008-09-01T21:27:35Z2008-09-01T21:27:35Z<p>@Domenic: indeed, it would be a good thing... However, a whole team's been at it for some time now, and until they succeed we are stuck with a single .dll and something quite monolithic :-(</p>
http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36713#367133Answer by OysterD for Should a function have only one return statement ?OysterD2008-08-31T09:31:16Z2008-08-31T09:31:16Z<p>One good reason I can think of is for code maintenance: you have a single point of exit. If you want to change the format of the result,..., it's just much simpler to implement. Also, for debugging, you can just stick a breakpoint there :)</p>
<p>Having said that, I once had to work in a library where the coding standards imposed 'one return statement per function', and I found it pretty tough. I write lots of numerical computations code, and there often are 'special cases', so the code ended up being quite hard to follow...</p>
http://stackoverflow.com/questions/35879/base64-encoding-image/35881#358810Answer by OysterD for Base64 Encoding ImageOysterD2008-08-30T11:06:37Z2008-08-30T11:06:37Z<p>Google led me to <a href="http://fr.php.net/base64_encode" rel="nofollow">this</a> solution (base64_encode). Hope this helps!</p>
http://stackoverflow.com/questions/35809/why-are-vi-and-emacs-popular/35814#3581443Answer by OysterD for Why are Vi and Emacs popular ?OysterD2008-08-30T09:23:29Z2008-08-30T09:28:46Z<p>Well, the fact that they are quite old means that:</p>
<ul>
<li>there are lots of resources available;</li>
<li>lots of tools (scripts, plugins,...) have been developed for them;</li>
<li>more people have had the chance to get exposed to them.</li>
</ul>
<p>If you work in Unix-like environments, you can be pretty sure that a variant of one of these will be available on every machine you'll see. Also, having a text editor which has a pure text mode can be quite helpful when working remotely on a machine from a simple terminal.</p>
<p>Personally, I tend to use Vim as I love the fact that it has a 'command mode' (this makes commands much shorter, hence easier to remember and type in my opinion), and that (like Emacs) it is (freely) available for virtually every platform.</p>
http://stackoverflow.com/questions/35722/desktop-search-utility-for-pdf-chm-and-djvu-files/35810#358101Answer by OysterD for Desktop search utility for pdf,chm and djvu filesOysterD2008-08-30T09:17:23Z2008-08-30T09:17:23Z<p>Note that djvu is an image compression format (optimized to compress 'pictures of text', typically the results of scanning). As such, you won't be able to search for text, except in the metadata -this is what the link sent by cdleary refers to-, <em>or</em> if you first use OCR on the document to convert it into text.</p>
<p>The same is true for PDFs which content are scanned articles/books.</p>
http://stackoverflow.com/questions/35790/what-xml-books-do-you-recommend/35792#357921Answer by OysterD for What XML books do you recommend?OysterD2008-08-30T08:47:49Z2008-08-30T08:47:49Z<p>There's a Wikibook on XML available <a href="http://en.wikibooks.org/wiki/XML" rel="nofollow">here</a>.</p>
<p>There's also quite a lot of material at <a href="http://www.w3schools.com/" rel="nofollow">w3schools</a>.</p>
http://stackoverflow.com/questions/34345/finding-your-own-number-in-a-box6Finding your own number in a boxOysterD2008-08-29T10:39:13Z2008-08-29T19:12:44Z
<p>100 (or some even number 2N :-) ) prisoners are in a room A. They are numbered from 1 to 100.</p>
<p>One by one (from prisoner #1 to prisoner #100, in order), they will be let into a room B in which 100 boxes (numbered from 1 to 100) await them. Inside the (closed) boxes are numbers from 1 to 100 (the numbers inside the boxes are randomly permuted!).</p>
<p>Once inside room B, each prisoner gets to open 50 boxes (he chooses which one he opens). If he finds the number that was assigned to him in one of these 50 boxes, the prisoner gets to walk into a room C and all boxes are closed again before the next one walks into room B from room A. Otherwise, all prisoners (in rooms A, B and C) gets killed.</p>
<p>Before entering room B, the prisoners can agree on a strategy (algorithm). There is no way to communicate between rooms (and no message can be left in room B!).</p>
<p>Find a strategy (algorithm) that maximizes the probability that all prisoners survive. What probability does your algorithm achieve?</p>
<p>Edits:</p>
<ul>
<li><p>Note that I did ask if it was OK to post puzzles. I'd like to get some feedback from people downvoting if possible!</p></li>
<li><p>@Ross: doing things randomly (what you call 'no strategy') indeed gives a probability of 1/2 for each prisoner, but then the probability of all of them surviving is 1/2^100 (which is quite low). One can do much better!</p></li>
<li><p>The prisoners are not allowed to reorder the boxes!</p></li>
<li><p>Also, be assured that I do have an interesting solution. I'll post it in a week or so :)</p></li>
<li><p>@Sam Hasler: all prisoners are killed the first time a prisoner fails to find his number. <em>And</em> no communication is possible.</p></li>
<li><p><b>Hint</b>: one can save more than 30 prisoners <em>on average</em>, which is much more that (50/100) * (50/99) * [...] * 1</p></li>
<li><p>@Rob Cooper: I get your point (no point in yelling!), however it reflects your opinion (and that of some others I'm sure), and I don't yet see a consensus on that matter. I do respect your opinion (didn't vote on your answer, or on any other by the way), but I'd really like to have this clarified (in the FAQ for example...).</p></li>
<li><p>@Jorge: I still didn't get into the details of your solution, but I believe that you can indeed do it this way. However, this is basically using time to communicate. The solution I have in mind doesn't involve any kind of communication (so people can't rely on time, for example).</p></li>
<li><p>@chakrit: it would help if you provided the probability that your method achieves. In case it's too complicated to work out, running simulations (Monte-Carlo like) would give you an estimate!</p></li>
<li><p>@jbettis: <strong>this is indeed the solution</strong> I had in mind (and believe me or not, but I found it myself when presented with the problem). As for the wording, I'm sorry but I'm not a native English speaker. For the specific wordings you refer to: for me, saving more that 30 on average is equivalent to your wording; also the problem is the same if you kill all prisoners as soon as one fails...</p></li>
</ul>
http://stackoverflow.com/questions/24610/vi-editing-for-visual-studio10Vi editing for Visual StudioOysterD2008-08-23T21:19:34Z2008-08-29T17:50:17Z
<p>I'm used to the vi(m) editor, and am using MS VisualStudio 2005 at work. I couldn't find a free vi add-in (there's one for the 2003 version :-( ). I've googled a bit, saw that there was a 'Google summer of code' project this year to write such an add-in, and am eagerly awaiting the result. I've also heard of ViEmu (not free, and I can't test it at work :( ).</p>
<p>I was wondering if anyone in my situation had found a solution (and/or if anyone had tested ViEmu)?</p>
<p>Edit: can't test at work because they are paranoid about what we install on our boxes: it has to go through channels,..., and for 30 days I don't reckon it's worth it (and I have no Windows box at home).</p>
<p>As both answers were quite equivalent, I ended up accepting the first one that came in.</p>
http://stackoverflow.com/questions/34524/what-is-a-mutex/34553#345531Answer by OysterD for What is a mutex?OysterD2008-08-29T16:06:02Z2008-08-29T16:31:38Z<p>@Iker: maybe going through the index of a book on distributed computing :)</p>
<p>Edit:</p>
<p>I was refering to Dalroth's other questions, all asked in the same 10 minutes:
<a href="http://beta.stackoverflow.com/questions/34519/what-is-a-semaphore" rel="nofollow">What is a semaphore?</a>, <a href="http://beta.stackoverflow.com/questions/34512/what-is-a-deadlock" rel="nofollow">What is a deadlock?</a>, <a href="http://beta.stackoverflow.com/questions/34510/what-is-a-race-condition" rel="nofollow">What is a race condition?</a>.</p>