User Derek Park - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T18:28:09Z http://stackoverflow.com/feeds/user/872 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/12647/how-do-i-tell-if-a-variable-has-a-numeric-value-in-perl 4 How do I tell if a variable has a numeric value in Perl? Derek Park 2008-08-15T19:43:15Z 2009-10-21T10:32:08Z <p>Is there a simple way in Perl that will allow me to determine if a given variable is numeric? Something along the lines of:</p> <pre><code>if (is_number($x)) { ... } </code></pre> <p>would be ideal. A technique that won't throw warnings when the <code>-w</code> switch is being used is certainly preferred.</p> http://stackoverflow.com/questions/1467538/c-check-if-pointer-is-passed-else-create-one/1467579#1467579 1 Answer by Derek Park for C++ Check if pointer is passed, else create one? Derek Park 2009-09-23T17:50:47Z 2009-09-23T17:50:47Z <p>What's the problem with using NULL? That's the general way this is handled. If you <em>really</em> need to distinguish between "caller passed nothing" and "caller passed NULL", then use <code>0xFFFFFFFF</code> on a 32-bit system or <code>0xFFFFFFFFFFFFFFFF</code> on a 64-bit system.</p> <pre><code>point * funct(point * p = (point *)(-1)) { if (p == (point *)(-1)) { p = new point(); } if (p == NULL) { // special case handling return NULL; } // fill in p return p } </code></pre> <p>The '-1' cast will always be the maximum pointer value as long as you are on a two's-compliment architecture. Feel free to substitute the C-style cast with a reinterpret cast if you prefer.</p> http://stackoverflow.com/questions/1436826/why-doesnt-os-x-have-the-same-flickering-problems-that-windows-does 5 Why doesn't OS X have the same flickering problems that Windows does? Derek Park 2009-09-17T05:24:58Z 2009-09-22T03:47:40Z <p>I was reading Larry Osterman's latest blog post about <a href="http://blogs.msdn.com/larryosterman/archive/2009/09/16/building-a-flicker-free-volume-control.aspx" rel="nofollow">debugging a flickering problem in the Windows Vista/7 volume control</a>, and I suddenly realized that I can't recall ever seeing an application flicker on my OS X laptop. Even applications that otherwise seem to be poorly written avoid the flicker problem in my experience. Without this turning into an Apple vs Windows debate (please), <strong>why do OS X applications not seem to have the same flickering problem</strong>?</p> <p>I have trouble believing that Apple developers are simply amazing at programming flicker-free GUIs, while Windows programmers suck, so what's the reason? Does the OS X API require all GUIs to implement double-buffering? While some apps have the slightly sluggish double-buffered resize behavior, many don't, and they still avoid flickering. Is the OS X repaint flow somehow fundamentally different from Windows, avoiding the <code>WM_ERASEBKGRND</code> problem entirely? Or is there some other possibility that I'm not seeing?</p> <p>Update: Thank you for your answers. I wish I could select both ken and cb160's answers, because they are both helpful.</p> http://stackoverflow.com/questions/1336356/what-is-the-fastest-way-of-calling-and-executing-a-function-in-c/1336455#1336455 1 Answer by Derek Park for what is the fastest way of calling and executing a function in C? Derek Park 2009-08-26T17:54:13Z 2009-08-26T17:54:13Z <p>This depends on how you're determining which of these hundreds of thousands of functions to call. If you're doing a linear search through your function pointer list, then yes, you're probably wasting a lot of time. In this case, you should look into putting the function pointers into a hash table, or at least storing them in a sorted list so you can do a binary search. Without more information about what you are doing, and how you're doing it, it's difficult to give you useful advice.</p> <p>Also you definitely need to profile, as others have pointed out. It sounds like you don't know if what you're doing is slow, in which case you also don't know whether it's worth trying to optimize it.</p> http://stackoverflow.com/questions/1175128/is-there-a-pthread-equivalent-to-watiformultipleobjects/1175148#1175148 1 Answer by Derek Park for Is there a pthread equivalent to WatiForMultipleObjects Derek Park 2009-07-23T23:58:39Z 2009-07-23T23:58:39Z <p>If you want to wait for all, as you're doing here, you can simply call <code>pthread_join()</code> for each thread. It will accomplish the same thing.</p> <pre><code>pthread_create(&amp;hThreads[0], 0, &amp;do_a, p_args_a); pthread_create(&amp;hThreads[1], 0, &amp;do_b, p_args_b); pthread_join(hThreads[0], NULL); pthread_join(hThreads[1], NULL); </code></pre> <p>You can get fancy and do this in a for loop if you've got more than a couple of threads.</p> http://stackoverflow.com/questions/10533/parsing-attributes-with-regex-in-perl 2 Parsing attributes with regex in Perl Derek Park 2008-08-14T00:40:26Z 2009-07-15T04:37:57Z <p>Here's a problem I ran into recently. I have attributes strings of the form</p> <pre><code>"x=1 and y=abc and z=c4g and ..." </code></pre> <p>Some attributes have numeric values, some have alpha values, some have mixed, some have dates, etc.</p> <p>Every string is <em>supposed</em> to have "<code>x=someval and y=anotherval</code>" at the beginning, but some don't. I have three things I need to do. </p> <ol> <li>Validate the strings to be certain that they have <code>x</code> and <code>y</code>. </li> <li>Actually parse the values for <code>x</code> and <code>y</code>.</li> <li>Get the rest of the string.</li> </ol> <p>Given the example at the top, this would result in the following variables:</p> <pre><code>$x = 1; $y = "abc"; $remainder = "z=c4g and ..." </code></pre> <p>My question is: Is there a (reasonably) simple way to parse these <em>and</em> validate with a single regular expression? i.e.:</p> <pre><code>if ($str =~ /someexpression/) { $x = $1; $y = $2; $remainder = $3; } </code></pre> <p>Note that the string may consist of <em>only</em> <code>x</code> and <code>y</code> attributes. This is a valid string.</p> <p>I'll post my solution as an answer, but it doesn't meet my single-regex preference.</p> http://stackoverflow.com/questions/7074/in-c-what-is-the-difference-between-string-and-string/7077#7077 92 Answer by Derek Park for In C# what is the difference between String and string Derek Park 2008-08-10T07:22:02Z 2009-06-21T10:23:38Z <p><code>string</code> is an alias for <code>System.String</code>. So technically, there is no difference. It's like <a href="http://stackoverflow.com/questions/62503/c-int-or-int32-should-i-care"><code>int</code> <em>vs.</em> <code>System.Int32</code></a>.</p> <p>As far as guidelines, I think it's generally recommended to use <code>string</code> any time you're referring to an object. e.g.</p> <pre><code>string place = "world"; </code></pre> <p>Likewise, I think it's generally recommended to use <code>String</code> if you need to refer specifically to the class. e.g.</p> <pre><code>string greet = String.Format("Hello {0}!", place); </code></pre> <p>This is the style that Microsoft tends to use in <a href="http://msdn.microsoft.com/en-us/library/fht0f5be.aspx#ctl00%5Frs1%5FmainContentContainer%5Fctl110CSharp" rel="nofollow">their examples</a>.</p> http://stackoverflow.com/questions/715299/what-is-the-life-span-of-data/715338#715338 0 Answer by Derek Park for What is the life span of data? Derek Park 2009-04-03T19:28:59Z 2009-04-03T19:28:59Z <blockquote> <p>[...] but certainly all data has some sort of life span?</p> </blockquote> <p>Not any kind of life span we can talk about meaningfully. A lot of data is useless as soon as it's created or recorded. Such data could be discarded immediately with no effect. On the other hand, some data has enough value that it will outlive the current system that hosts it. If Amazon were to completely replace their current infrastructure, the customer histories they have stored would still be immensely valuable.</p> <p>As you said, it's relative. Each type of data has its own life span that has no relation to another type of data's life span. There's no meaningful "average life span of data". </p> http://stackoverflow.com/questions/107716/licensing-changing-gplv2-licensed-code-into-gplv3-licensed-code/712745#712745 0 Answer by Derek Park for Licensing: Changing GPLv2 licensed code into GPLv3 licensed code Derek Park 2009-04-03T06:33:49Z 2009-04-03T06:33:49Z <p>This depends entirely on whether the code under the GPLv2 has the <a href="http://www.gnu.org/licenses/gpl-2.0.txt" rel="nofollow">"any later version"</a> clause:</p> <blockquote> <p>If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation.</p> </blockquote> <p>If it does, then you're golden. You can take the GPLv2 code, and the Apache License 2.0 code, and combine them into a new piece of software released under the GPLv3. You just need to keep all the old notices intact, and of course make sure you're not doing anything else that would violate he GPLv2, GPLv3, or Apache License 2.0.</p> <p>If the GPLv2 code does not allow "any later version" of the GPL, then there's nothing you can do except ask the copyright owners to release the code under a different license. The Apache License 2.0 is <a href="http://www.fsf.org/licensing/licenses/index%5Fhtml#apache2" rel="nofollow"><em>not</em> compatible with the GPLv2</a>, and if the GPLv2 code doesn't allow you to use a later version of the GPL, then there is no way to resolve the conflict.</p> http://stackoverflow.com/questions/712683/what-is-lazy-allocation/712725#712725 6 Answer by Derek Park for what is lazy allocation? Derek Park 2009-04-03T06:16:56Z 2009-04-03T06:22:19Z <p>Lazy allocation simply means not allocating a resource until it is actually needed. This is common with singleton objects, but strictly speaking, any time a resource is allocated as late as possible, you have an example of lazy allocation.</p> <p>By delaying allocation of a resource until you actually need it, you can decrease startup time, and even eliminate the allocation entirely if you never actually use the object. In contrast, you could pre-allocate a resource you expect to need later, which can make later execution more efficient at the expense of startup time, and also avoids the possibility of the allocation failing later in program execution.</p> <p>The following code provides an example of a lazily-allocated singleton:</p> <pre><code>public class Widget { private Widget singleton; public static Widget get() { if (singleton == null) { singleton = new Widget(); } return singleton; } private Widget() { // ... } // ... } </code></pre> <p>Do note that this code isn't threadsafe. In most cases, access to the <code>get()</code> method should be synchronized in some fashion.</p> <p>A similar (and perhaps more general) concept is <a href="http://en.wikipedia.org/wiki/Lazy%5Finitialization" rel="nofollow">lazy initialization</a>.</p> http://stackoverflow.com/questions/11574/how-can-i-improve-performance-when-adding-indesign-xmlelements-via-applescript/11581#11581 0 Answer by Derek Park for How can I improve performance when adding InDesign XMLElements via AppleScript? Derek Park 2008-08-14T19:34:54Z 2008-12-27T15:56:40Z <p>If the inner loop code is a reasonable length, I don't see any reason you can't post it. I think Stack Overflow is intended to encompass both general and specific questions.</p> http://stackoverflow.com/questions/190232/can-a-recursive-function-be-inline/190268#190268 23 Answer by Derek Park for Can a recursive function be inline? Derek Park 2008-10-10T05:47:13Z 2008-10-10T05:47:13Z <p>First, the <code>inline</code> specification on a function is just a hint. The compiler can (and often does) completely ignore the presence or absence of an <code>inline</code> qualifier. With that said, a compiler <em>can</em> inline a recursive function, much as it can unroll an infinite loop. It simply has to place a limit on the level to which it will "unroll" the function.</p> <p>An optimizing compiler might turn this code:</p> <pre><code>inline int factorial(int n) { if (n &lt;= 1) { return 1; } else { return n * factorial(n - 1); } } int f(int x) { return factorial(x); } </code></pre> <p>into this code:</p> <pre><code>int factorial(int n) { if (n &lt;= 1) { return 1; } else { return n * factorial(n - 1); } } int f(int x) { if (x &lt;= 1) { return 1; } else { int x2 = x - 1; if (x2 &lt;= 1) { return x * 1; } else { int x3 = x2 - 1; if (x3 &lt;= 1) { return x * x2 * 1; } else { return x * x2 * x3 * factorial(x3 - 1); } } } } </code></pre> <p>In this case, we've basically inlined the function 3 times. Some compilers <em>do</em> perform this optimization. I recall MSVC++ having a setting to tune the level of inlining that would be performed on recursive functions (up to 20, I believe).</p> http://stackoverflow.com/questions/190094/what-are-the-specific-differences-between-a-cs-and-cis-degree/190137#190137 3 Answer by Derek Park for What are the specific differences between a CS and CIS degree? Derek Park 2008-10-10T04:38:15Z 2008-10-10T04:49:50Z <p>Depends on what you mean by CIS. There's Computer Information Systems, which is generally going to be much more business-oriented, and won't delve nearly as deeply into the fundamentals of computer science. As I understand it, this degree is basically equivalent to a Management of Information Systems degree.</p> <p>There's also Computer and Information Science, which is equivalent to a Computer Science degree. My department used both of these terms interchangeably.</p> <p>If you're looking to fill in the gaps in your skills, I'd probably look over the curriculum for a computer science degree. The things you aren't strong in are the ones you need to brush up on. I'd expect that algorithms and data structures are a good place to start. (Most people are not as skilled in this area as they should be, even those with a CS degree.)</p> <p>Check out Yegge's <a href="http://steve.yegge.googlepages.com/five-essential-phone-screen-questions" rel="nofollow">phone screen post</a>, too. The skills he outlines there are pretty fundamental. In fact, any good posts related to interviewing would probably highlight some areas to study up on.</p> http://stackoverflow.com/questions/149898/preconditions-and-exceptions/149938#149938 2 Answer by Derek Park for preconditions and exceptions Derek Park 2008-09-29T18:08:17Z 2008-09-29T18:08:17Z <p>Yes and no.</p> <p>Yes - Violating a precondition is certainly an appropriate time to throw an exception. Throwing a more specific exception will make catching that specific exception simpler.</p> <p>No - Declaring a new exception class for every precondition in your program/api seems way overkill. This could result in hundreds or thousands of exceptions eventually. This seems a waste both mentally and computationally.</p> <p>I would recommend throwing exceptions for precondition violations. I would not, however, recommend defining a new exception for each precondition. Instead, I would recommend creating broader classes of exceptions that cover a specific <em>type</em> of precondition violation, rather than a specific precondition violation. (I would also recommend using existing exceptions where they fit well.)</p> http://stackoverflow.com/questions/141752/would-you-consider-float-values-to-behave-differently-across-a-release-and-debug/142537#142537 1 Answer by Derek Park for Would you consider float values to behave differently across a release and debug builds to be a bug? Derek Park 2008-09-26T23:57:36Z 2008-09-26T23:57:36Z <p>In addition to the different floating-point modes others have pointed out, SSE or similiar vector optimizations may be turned on for release. Converting floating-point arithmetic from standard registers to vector registers can have an effect on the lower bits of your results, as the vector registers will generally be more narrow (fewer bits) than the standard floating-point registers.</p> http://stackoverflow.com/questions/141525/absolute-beginners-guide-to-bit-shifting/141873#141873 52 Answer by Derek Park for Absolute Beginner's Guide to Bit Shifting? Derek Park 2008-09-26T20:46:39Z 2008-09-26T22:07:24Z <p>The bit shifting operators do exactly what their name implies. They shift bits. Here's a brief (or not-so-brief) introduction to the different shift operators.</p> <h2>The Operators</h2> <ul> <li><code>&gt;&gt;</code> is the arithmetic (or signed) right shift operator.</li> <li><code>&gt;&gt;&gt;</code> is the logical (or unsigned) right shift operator. </li> <li><code>&lt;&lt;</code> is the left shift operator, and meets the needs of both logical and arithmetic shifts.</li> </ul> <p>All of these operators can be applied to integer values (<code>int</code>, <code>long</code>, possibly <code>short</code> and <code>byte</code> or <code>char</code>). In some languages, applying the shift operators to any datatype smaller than <code>int</code> automatically resizes the operand to be an <code>int</code>.</p> <p>Note that <code>&lt;&lt;&lt;</code> is not an operator, because it would be redundant. Also note that C and C++ do not distingiush between the right shift operators. They provide only the <code>&gt;&gt;</code> operator, and the shifting behavior is implementation defined.</p> <p><hr /></p> <h2>Left shift (&lt;&lt;)</h2> <p>Integers are stored, in memory, as a series of bits. For example, the number 6 stored as a 32-bit <code>int</code> would be:</p> <pre><code>00000000 00000000 00000000 00000110 </code></pre> <p>Shifting this bit pattern to the left one position (<code>6 &lt;&lt; 1</code>) would result in the number 12:</p> <pre><code>00000000 00000000 00000000 00001100 </code></pre> <p>As you can see, the digits have shifted to the left by one position, and the last digit on the right is filled with a zero. You might also note that shifting left is equivalent to multiplication by powers of 2. So <code>6 &lt;&lt; 1</code> is equivalent to <code>6 * 2</code>, and <code>6 &lt;&lt; 3</code> is equivalent to <code>6 * 8</code>. A good optimizing compiler will substitute shifts for multiplications when possible.</p> <h3>Non-circular shifting</h3> <p>Please note that these are <em>not</em> circular shifts. Shifting this value to the left by one position (<code>3,758,096,384 &lt;&lt; 1</code>):</p> <pre><code>11100000 00000000 00000000 00000000 </code></pre> <p>results in 3,221,225,472:</p> <pre><code>11000000 00000000 00000000 00000000 </code></pre> <p>The digit that gets shifted "off the end" is lost. It does not wrap around.</p> <p><hr /></p> <h2>Logical right shift (>>>)</h2> <p>A logical right shift is the converse to the left shift. Rather than moving bits to the left, they simply move to the right. For example, shifting the number 12:</p> <pre><code>00000000 00000000 00000000 00001100 </code></pre> <p>to the right by one position (<code>12 &gt;&gt;&gt; 1</code>) will get back our original 6:</p> <pre><code>00000000 00000000 00000000 00000110 </code></pre> <p>So we see that shifting to the right is equivalent to division by powers of 2.</p> <h3>Lost bits are gone</h3> <p>However, a shift cannot reclaim "lost" bits. For example, if we shift this pattern:</p> <pre><code>00111000 00000000 00000000 00000110 </code></pre> <p>to the left 4 positions (<code>939,524,102 &lt;&lt; 4</code>), we get 2,147,483,744:</p> <pre><code>10000000 00000000 00000000 01100000 </code></pre> <p>and then shifting back (<code>(939,524,102 &lt;&lt; 4) &gt;&gt;&gt; 4</code>) we get 134,217,734:</p> <pre><code>00001000 00000000 00000000 00000110 </code></pre> <p>We cannot get back our original value once we have lost bits.</p> <p><hr /></p> <h1>Arithmetic right shift (>>)</h1> <p>The arithmetic right shift is exactly like the logical right shift, except instead of padding with zero, it pads with the most significant bit. This is because the most significant bit is the <em>sign</em> bit, or the bit that distingishes positive and negative numbers. By padding with the most significant bit, the logical right shift is sign-preserving.</p> <p>For example, if we interpret this bit pattern as a negative number:</p> <pre><code>10000000 00000000 00000000 01100000 </code></pre> <p>we have the number -2,147,483,552. Shifting this to the right 4 positions with the arithmetic shift (-2,147,483,552 >> 4) would give us:</p> <pre><code>11111000 00000000 00000000 00000110 </code></pre> <p>or the number -134,217,722.</p> <p>So we see that we have preserved the sign of our negative numbers by using the arithmetic right shift, rather than the logical right shift. And once again, we see that we are performing division by powers of 2.</p> http://stackoverflow.com/questions/141970/class-with-valuetypes-fields-and-boxing/142253#142253 0 Answer by Derek Park for class with valueTypes fields and boxing Derek Park 2008-09-26T22:00:39Z 2008-09-26T22:00:39Z <p>Honestly, it sounds like you really want these <code>Column</code>s to be classes, but don't want to pay the runtime cost associated with classes, so you're trying to make them be structs. I don't think you're going to find an elegant way to do what you want. Structs are supposed to be value types, and you want to make them behave like reference types.</p> <p>You cannot efficiently store your Columns in an array of <code>IColumn</code>s, so no array approach is going to work well. The compiler has no way to know that the <code>IColumn</code> array will only hold structs, and indeed, it wouldn't help if it did, because there are still different types of structs you are trying to jam in there. Every time someone calls <code>AcceptChanges()</code> or <code>HasChanges()</code>, you're going to end up boxing and cloning your structs anyway, so I seriously doubt that making your <code>Column</code> a struct instead of a class is going to save you much memory.</p> <p>However, you <em>could</em> probably store your <code>Column</code>s directly in an array and index them with an enum. E.g:</p> <pre><code>public class Record { public enum ColumnNames { ID = 0, Name, Date, Int, NumCols }; private IColumn [] columns; public Record() { columns = new IColumn[ColumnNames.NumCols]; columns[ID] = ... } public bool HasChanges { get { bool has = false; for (int i = 0; i &lt; columns.Length; i++) has |= columns[i].HasChanges; return has; } } public void AcceptChanges() { for (int i = 0; i &lt; columns.Length; i++) columns[i].AcceptChanges(); } } </code></pre> <p>I don't have a C# compiler handy, so I can't check to see if that will work or not, but the basic idea should work, even if I didn't get all the details right. However, I'd just go ahead and make them classes. You're paying for it anyway.</p> http://stackoverflow.com/questions/10324/how-can-i-convert-a-hexadecimal-number-to-base-10-efficiently-in-c/10552#10552 0 Answer by Derek Park for How can I convert a hexadecimal number to base 10 efficiently in C? Derek Park 2008-08-14T01:16:16Z 2008-09-26T19:20:55Z <p>@Eric</p> <blockquote> <p>I was actually hoping to see a C wizard post something really cool, sort of like what I did but less verbose, while still doing it "manually".</p> </blockquote> <p>Well, I'm no C guru, but here's what I came up with:</p> <pre><code>unsigned int parseHex(const char * str) { unsigned int val = 0; char c; while(c = *str++) { val &lt;&lt;= 4; if (c &gt;= '0' &amp;&amp; c &lt;= '9') { val += c &amp; 0x0F; continue; } c &amp;= 0xDF; if (c &gt;= 'A' &amp;&amp; c &lt;= 'F') { val += (c &amp; 0x07) + 9; continue; } errno = EINVAL; return 0; } return val; } </code></pre> <p>I originally had more bitmasking going on instead of comparisons, but I seriously doubt bitmasking is any faster than comparison on modern hardware.</p> http://stackoverflow.com/questions/141140/why-does-java-not-have-block-scoped-variable-declarations/141181#141181 14 Answer by Derek Park for Why does Java not have block-scoped variable declarations? Derek Park 2008-09-26T18:37:34Z 2008-09-26T18:43:54Z <p>Because it's not uncommon for writers to do this intentionally and then totally screw it up by forgetting that there are now two variables with the same name. They change the inner variable name, but leave code that uses the variable, which now unintentially uses the previously-shadowed variable. This results in a program that still compiles, but executes buggily.</p> <p>Similarly, it's not uncommon to accidentally shadow variables and change the program's behavior. Unknowingly shadowing an existing variable can change the program as easily as unshadowing a variable as I mentioned above.</p> <p>There's so little benefit to allowing this shadowing that they ruled it out as too dangerous. Seriously, just call your new variable something else and the problem goes away.</p> http://stackoverflow.com/questions/140926/normalize-newlines-in-c/141069#141069 1 Answer by Derek Park for Normalize newlines in C# Derek Park 2008-09-26T18:14:56Z 2008-09-26T18:41:18Z <p>I believe this will do what you need:</p> <pre><code>using System.Text.RegularExpressions; // ... string normalized = Regex.Replace(originalString, @"\r\n|\n\r|\n|\r", "\r\n"); </code></pre> <p>I'm not 100% sure on the exact syntax, and I don't have a .Net compiler handy to check. I wrote it in perl, and converted it into (hopefully correct) C#. The only real trick is to match "\r\n" and "\n\r" first.</p> <p>To apply it to an entire stream, just run in on chunks of input. (You could do this with a stream wrapper if you want.)</p> <p><hr /></p> <p>The original perl:</p> <pre><code>$str =~ s/\r\n|\n\r|\n|\r/\r\n/g; </code></pre> <p>The test results:</p> <pre><code>[bash$] ./test.pl \r -&gt; \r\n \n -&gt; \r\n \n\n -&gt; \r\n\r\n \n\r -&gt; \r\n \r\n -&gt; \r\n \r\n\n -&gt; \r\n\r\n </code></pre> <p><hr /></p> <p>Update: Now converts \n\r to \r\n, though I wouldn't call that normalization.</p> http://stackoverflow.com/questions/135868/whiteboard-interview-questions/135948#135948 2 Answer by Derek Park for Whiteboard Interview Questions Derek Park 2008-09-25T20:45:17Z 2008-09-25T20:45:17Z <p>There are quite a few sites dedicated to this. e.g., <a href="http://www.techinterviews.com/" rel="nofollow">http://www.techinterviews.com/</a>. Most of them have puzzle questions, but they also have real technical questions as well. I'd check out those if you want a big list. There are hundreds of good questions in lots of different areas.</p> http://stackoverflow.com/questions/135634/class-design-vs-ide-are-nonmember-nonfriend-functions-really-worth-it/135684#135684 1 Answer by Derek Park for Class design vs. IDE: Are nonmember nonfriend functions really worth it? Derek Park 2008-09-25T20:06:27Z 2008-09-25T20:16:53Z <p>I'm going to have to disagree with Sutter and Alexandrescu on this one. I think if the behavior of function <code>foo()</code> falls within the realm of class <code>Bar</code>'s responsibilities, then <code>foo()</code> should be part of <code>bar()</code>.</p> <p>The fact that <code>foo()</code> doesn't need direct access to <code>Bar</code>'s member data doesn't mean it isn't conceptually part of <code>Bar</code>. It can also mean that the code is well factored. It's not uncommon to have member functions which perform all their behavior via other member functions, and I don't see why it should be.</p> <p>I fully agree that peripherally-related functions should <em>not</em> be part of the class, but if something is core to the class responsibilities, there's no reason it shouldn't be a member, regardless of whether it is directly mucking around with the member data.</p> <p>As for these specific points:</p> <blockquote> <p><em>It promotes encapsulation, because there is less code that needs access to the internals of a class.</em></p> </blockquote> <p>Indeed, the fewer functions that directly access the internals, the better. That means that having member functions do as much as possible <em>via</em> other member functions is a good thing. Splitting well-factored functions out of the class just leaves you with a half-class, that requires a bunch of external functions to be useful. Pulling well-factored functions away from their classes also seems to discourage the writing of well-factored functions.</p> <blockquote> <p><em>It makes writing function templates easier, because you don't have to guess each time whether some function is a member or not.</em></p> </blockquote> <p>I don't understand this at all. If you pull a bunch of functions out of classes, you've thrust more responsibility onto function templates. They are forced to assume that <em>even less</em> functionality is provided by their class template arguments, unless we are going to assume that most functions pulled from their classes is going to be converted into a template (ugh).</p> <blockquote> <p><em>It keeps the class small, which in turn makes it easier to test and maintain.</em></p> </blockquote> <p>Um, sure. It also creates a lot of additional, external functions to test and maintain. I fail to see the value in this.</p> http://stackoverflow.com/questions/135234/difference-between-ref-and-out-parameters-in-net/135263#135263 16 Answer by Derek Park for Difference between ref and out parameters in .NET Derek Park 2008-09-25T19:01:32Z 2008-09-25T20:00:45Z <p><a href="http://msdn.microsoft.com/en-us/vcsharp/aa336814.aspx" rel="nofollow">Why does C# have both 'ref' and 'out'?</a></p> <blockquote> <p>The caller of a method which takes an out parameter is not required to assign to the variable passed as the out parameter prior to the call; however, the callee is required to assign to the out parameter before returning.</p> <p>...</p> <p>In contrast ref parameters are considered initially assigned by the callee. As such, the callee is not required to assign to the ref parameter before use. Ref parameters are passed both into and out of a method.</p> </blockquote> <p>So, <code>out</code> means out, while <code>ref</code> is for in and out. </p> <p>These correspond closely to the <code>[out]</code> and <code>[in,out]</code> parameters of COM interfaces, the advantages of <code>out</code> parameters being that callers need not pass a pre-allocated object in cases where it is not needed by the method being called - this avoids both the cost of allocation, and any cost that might be associated with marshaling (more likely with COM, but not uncommon in .NET).</p> http://stackoverflow.com/questions/135262/how-to-preserve-stack-space-with-good-design/135282#135282 4 Answer by Derek Park for How to preserve stack space with good design? Derek Park 2008-09-25T19:04:08Z 2008-09-25T19:04:08Z <p>Turn on optimization, specifically aggressive inlining. The compiler should be able to inline methods to minimize calls. Depending on the compiler and the optimization switches you use, marking some methods as <code>inline</code> may help (or it may be ignored).</p> <p>With GCC, try adding the "-finline-functions" (or -O3) flag and possibly the " -finline-limit=n" flag.</p> http://stackoverflow.com/questions/135069/ifdef-vs-if-which-is-better-safer/135113#135113 8 Answer by Derek Park for #ifdef vs #if - which is better/safer? Derek Park 2008-09-25T18:34:23Z 2008-09-25T18:34:23Z <p>I think it's entirely a question of style. Neither really has an obvious advantage over the other.</p> <p>Consistency is more important than either particular choice, so I'd recommend that you get together with your team and pick one style, and stick to it.</p> http://stackoverflow.com/questions/134392/how-to-add-currency-strings-non-standardized-input-together-in-php/134467#134467 2 Answer by Derek Park for How to add currency strings (non-standardized input) together in PHP? Derek Park 2008-09-25T16:47:37Z 2008-09-25T17:42:31Z <p>A regex won't convert your string into a number. I would suggest that you use a regex to validate the field (confirm that it fits one of your allowed formats), and then just loop over the string, discarding all non-digit and non-period characters. If you don't care about validation, you could skip the first step. The second step will still strip it down to digits and periods only.</p> <p>By the way, you cannot safely use floats when calculating currency values. You will lose precision, and very possibly end up with totals that do not exactly match the inputs.</p> <p>Update: Here are two functions you could use to verify your input and to convert it into a decimal-point representation.</p> <pre><code>function validateCurrency($string) { return preg_match('/^\$?(\d{1,3})(,\d{3})*(.\d{2})?$/', $string) || preg_match('/^\$?\d+(.\d{2})?$/', $string); } function makeCurrency($string) { $newstring = ""; $array = str_split($string); foreach($array as $char) { if (($char &gt;= '0' &amp;&amp; $char &lt;= '9') || $char == '.') { $newstring .= $char; } } return $newstring; } </code></pre> <p>The first function will match the bulk of currency formats you can expect "$99", "99,999.00", etc. It will not match ".00" or "99.", nor will it match most European-style numbers (99.999,00). Use this on your original string to verify that it is a valid currency string.</p> <p>The second function will just strip out everything except digits and decimal points. Note that by itself it may still return invalid strings (e.g. "", "....", and "abc" come out as "", "....", and ""). Use this to eliminate extraneous commas once the string is validated, or possibly use this by itself if you want to skip validation.</p> http://stackoverflow.com/questions/130604/looking-for-a-net-function-that-sums-up-number-and-instead-of-overflowing-simply/130660#130660 4 Answer by Derek Park for Looking for a .NET Function that sums up number and instead of overflowing simply returns int.MaxValue Derek Park 2008-09-24T23:43:07Z 2008-09-25T03:31:19Z <pre><code>int penaltySum(int a, int b) { return (int.MaxValue - a &lt; b) ? int.MaxValue : a + b; } </code></pre> <p>Update: If your penalties can be negative, this would be more appropriate:</p> <pre><code>int penaltySum(int a, int b) { if (a &gt; 0 &amp;&amp; b &gt; 0) { return (int.MaxValue - a &lt; b) ? int.MaxValue : a + b; } if (a &lt; 0 &amp;&amp; b &lt; 0) { return (int.MinValue - a &gt; b) ? int.MinValue : a + b; } return a + b; } </code></pre> http://stackoverflow.com/questions/130506/how-many-threads-should-i-use-in-my-java-program/130541#130541 0 Answer by Derek Park for How many threads should I use in my Java program? Derek Park 2008-09-24T23:15:18Z 2008-09-24T23:15:18Z <p>Yes, that's a perfectly reasonable approach. One thread per processor/core will maximize processing power and minimize context switching. I'd probably leave that as-is unless I found a problem via benchmarking/profiling.</p> <p>One thing to note is that the JVM does not guarantee <code>availableProcessors()</code> will be constant, so technically, you should check it immediately before spawning your threads. I doubt that this value is likely to change at runtime on typical computers, though.</p> <p>P.S. As others have pointed out, if your process is not CPU-bound, this approach is unlikely to be optimal. Since you say these threads are being used to generate images, though, I assume you <em>are</em> CPU bound.</p> http://stackoverflow.com/questions/130438/do-utf-8-utf-16-and-utf-32-unicode-encodings-differ-in-the-number-of-characters/130474#130474 4 Answer by Derek Park for Do UTF-8,UTF-16, and UTF-32 Unicode encodings differ in the number of characters they can store? Derek Park 2008-09-24T23:00:06Z 2008-09-24T23:00:06Z <p>UTF-8, UTF-16, and UTF-32 all support the full set of unicode code points. There are no characters that are supported by one but not another.</p> <p>As for the bonus question "Do these encodings differ in the number of characters they can be extended to support?" Yes and no. The way UTF-8 and UTF-16 are encoded limits the total number of code points they can support to less than 2^32. However, the Unicode Consortium will not add code points to UTF-32 that cannot be represented in UTF-8 or UTF-16. Doing so would violate the spirit of the encoding standards, and make it impossible to guarantee a one-to-one mapping from UTF-32 to UTF-8 (or UTF-16).</p> http://stackoverflow.com/questions/130227/what-is-a-good-algorithm-for-compacting-records-in-a-blocked-file/130321#130321 1 Answer by Derek Park for What is a good algorithm for compacting records in a blocked file? Derek Park 2008-09-24T22:29:40Z 2008-09-24T22:53:18Z <p>If there is no ordering to these records, I'd simply fill the blocks from the front with records extracted from the last block(s). This will minimize movement of data, is fairly simple, and should do a decent job of packing data tightly.</p> <p>E.g.:</p> <pre><code>// records should be sorted by size in memory (probably in a balanced BST) records = read last N blocks on disk; foreach (block in blocks) // read from disk into memory { if (block.hasBeenReadFrom()) { // we read from this into records already // all remaining records are already in memory writeAllToNewBlocks(records); // this will leave some empty blocks on the disk that can either // be eliminated programmatically or left alone and filled during // normal operation foreach (record in records) { record.eraseFromOriginalLocation(); } break; } while(!block.full()) { moveRecords = new Array; // list of records we've moved size = block.availableSpace(); record = records.extractBestFit(size); if (record == null) { break; } moveRecords.add(record); block.add(record); if (records.gettingLow()) { records.readMoreFromDisk(); } } if(moveRecords.size() &gt; 0) { block.writeBackToDisk(); foreach (record in moveRecords) { record.eraseFromOriginalLocation(); } } } </code></pre> <p>Update: I neglected to maintain the no-blocks-only-in-memory rule. I've updated the pseudocode to fix this. Also fixed a glitch in my loop condition.</p> http://stackoverflow.com/questions/1467538/c-check-if-pointer-is-passed-else-create-one/1467579#1467579 Comment by Derek Park on C++ Check if pointer is passed, else create one? Derek Park 2009-10-07T21:38:44Z 2009-10-07T21:38:44Z I have trouble envisioning a practical architecture on which this is a problem. This being a problem implies that the system is checking for the validity of the pointer, which is an expensive operation (given that it has to ask the OS if it's valid) with no real benefit that I can see. I can't see this kind of platform being compatible with the C++ virtual machine, since C++ uses invalid pointers (one past the end) to mark the ends of arrays and containers. http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13989#13989 Comment by Derek Park on What "already invented" algorithm did you invent? Derek Park 2009-10-07T21:26:34Z 2009-10-07T21:26:34Z Simucal, comments didn't exist when these types of answers were added. There's no value in digging into old questions to try to delete these. http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/13915#13915 Comment by Derek Park on What "already invented" algorithm did you invent? Derek Park 2009-10-07T21:24:42Z 2009-10-07T21:24:42Z jprete, comments have not always been available on Stack Overflow. Note that my answer was posted in August 2008, <i>the same month that the site launched</i>. New answers were the only way to comment. I see no value in going back and deleting all my existing &quot;comment&quot; answers. I really don't understand why you (and others) are digging into old questions to criticize a practice that predates comments. http://stackoverflow.com/questions/1467538/c-check-if-pointer-is-passed-else-create-one/1467579#1467579 Comment by Derek Park on C++ Check if pointer is passed, else create one? Derek Park 2009-09-23T20:24:16Z 2009-09-23T20:24:16Z On what architecture will casting -1 to a pointer cause a fault? Attempting to use such a pointer would obviously cause a fault, but I see no reason that creating the pointer would be problematic. http://stackoverflow.com/questions/1175128/is-there-a-pthread-equivalent-to-watiformultipleobjects/1175148#1175148 Comment by Derek Park on Is there a pthread equivalent to WatiForMultipleObjects Derek Park 2009-07-30T23:21:15Z 2009-07-30T23:21:15Z Sorry, I just saw your comment. No, you don't need to call <code>pthread&#95;exit</code> unless that it more convenient. It's analogous to calling <code>exit</code> from <code>main</code>. You can do so if you want, but you can also just return normally, and the effect will be as if you had called <code>pthread&#95;exit</code> with the return value from the thread function. I almost never call <code>pthread&#95;exit</code>. I also almost never use the return value (hence why I pass NULL as the second arg to <code>pthread&#95;join</code>). http://stackoverflow.com/questions/10533/parsing-attributes-with-regex-in-perl/10725#10725 Comment by Derek Park on Parsing attributes with regex in Perl Derek Park 2009-07-15T23:54:30Z 2009-07-15T23:54:30Z Come on. You were here early on. You know that we didn't always have proper comments. I'm not going to run around the site deleting all my old &quot;answers&quot; that were written as comments. http://stackoverflow.com/questions/712683/what-is-lazy-allocation/712725#712725 Comment by Derek Park on what is lazy allocation? Derek Park 2009-06-29T18:00:49Z 2009-06-29T18:00:49Z @hydeph, it looks like Deitel has two versions of that book, one with &quot;late objects&quot;, where the initial chapters are in procedural style (and introducing classes/objects later) and one with &quot;early objects&quot;, where classes/objects are introduced immediately. They are using &quot;late objects&quot; and &quot;early objects&quot; to distinguish between these teaching styles. It doesn't have any relationship to lazy initialization. http://stackoverflow.com/questions/712751/thread-needs-to-be-run-continuously-even-exception-occurs-in-it/712776#712776 Comment by Derek Park on Thread needs to be run continuously even exception occurs in it Derek Park 2009-04-03T06:57:22Z 2009-04-03T06:57:22Z Also, unless you've benchmarked the code with the try-catch inside and outside the loop, it's just conjecture that it would run slower with the try-catch inside. I'd wager that something else is dominating execution cost, and moving the try-catch inside will have no measurable effect. http://stackoverflow.com/questions/712751/thread-needs-to-be-run-continuously-even-exception-occurs-in-it/712776#712776 Comment by Derek Park on Thread needs to be run continuously even exception occurs in it Derek Park 2009-04-03T06:55:02Z 2009-04-03T06:55:02Z You <i>must</i> catch the exception inside the loop if you want the loop to continue. There is no way to catch the exception outside and continue the loop. The best you could do is catch outside and then re-execute the loop, but then all you've done is added another loop outside the try-catch. http://stackoverflow.com/questions/10274/when-should-i-not-use-the-threadpool-in-net/10286#10286 Comment by Derek Park on When should I not use the ThreadPool in .Net? Derek Park 2009-04-03T02:21:33Z 2009-04-03T02:21:33Z Thread pools are generally for when a program has independent, discrete pieces of work to do. If there's communication between the worker threads (such as in a pipeline), then you don't really have a thread pool scenario. http://stackoverflow.com/questions/194261/raii-in-java-is-resource-disposal-always-so-ugly-was-i-had-a-dream/194281#194281 Comment by Derek Park on RAII in Java... is resource disposal always so ugly ? (was: I had a dream ?) Derek Park 2008-10-11T17:57:47Z 2008-10-11T17:57:47Z &quot;In other words, a failing close()-method may hide the original exception produced by read() or write().&quot; Not may, <i>will</i>. It's guaranteed by the standard. A new exception will cause the previous exception to be discarded. http://stackoverflow.com/questions/194261/raii-in-java-is-resource-disposal-always-so-ugly-was-i-had-a-dream/194292#194292 Comment by Derek Park on RAII in Java... is resource disposal always so ugly ? (was: I had a dream ?) Derek Park 2008-10-11T17:54:50Z 2008-10-11T17:54:50Z If he's copying the file, then he probably <i>does</i> want to close the streams when he's done. The copy is complete, so there's no point in leaving the streams open. In this case, his nested try-finally blocks + close() calls are appropriate. http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/177245#177245 Comment by Derek Park on Algorithm to determine if array contains n...n+m? Derek Park 2008-10-10T16:27:57Z 2008-10-10T16:27:57Z Yes, it depends on representation. This isn't what the question is looking for, though. Overflow is an issue that affects many algorithms. It is not, however, something that is generally taken into account when measuring runtime complexity. http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/188315#188315 Comment by Derek Park on Algorithm to determine if array contains n...n+m? Derek Park 2008-10-10T05:24:19Z 2008-10-10T05:24:19Z You can't call this a working solution when it breaks as soon a you have sequences longer than 32. Artificially limiting the solution doesn't make it O(1). http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm Comment by Derek Park on Algorithm to determine if array contains n...n+m? Derek Park 2008-10-10T05:22:13Z 2008-10-10T05:22:13Z J.F. Sebastian, as you pointed out below, the &quot;uniqueSet&quot; solution is not O(1) space. It's O(m), because it requires m extra bits of storage.