User j_random_hacker - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:35:27Z http://stackoverflow.com/feeds/user/47984 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1754641/token-suffix-tree-tutorial/1755548#1755548 0 Answer by j_random_hacker for Token Suffix Tree Tutorial j_random_hacker 2009-11-18T12:04:48Z 2009-11-18T12:04:48Z <p>From googling that same phrase and scanning the first couple of results, my guess is that they are talking about a suffix tree in which the "letters" (or "characters", or "elements") are not individual ASCII or UNICODE characters as we are accustomed to, but rather the lexical tokens from some computer language.</p> <p>So e.g. for C you would have a "letter" called <code>int</code>, and another letter called <code>(</code>, and so on. I'm not sure exactly how tokens that are subsequences of other tokens (e.g. <code>+</code> is a subsequence of <code>++</code>) would be handled, but my guess would be that they are handled in the same way the lexer deals with them, which is (for C at least) by always greedily building the longest token (so e.g. the 5 input characters <code>+++++</code> will be lexed as <code>++</code>, <code>++</code>, <code>+</code>).</p> http://stackoverflow.com/questions/1674012/read-blocks-from-an-ext3-filesystem/1674067#1674067 1 Answer by j_random_hacker for Read blocks from an ext3 filesystem? j_random_hacker 2009-11-04T14:24:23Z 2009-11-04T14:24:23Z <p>Disk devices, and partitions within them, behave just like regular files that you can read from (and write to), e.g.:</p> <pre><code>head -c 2048 /dev/sda1 &gt; first_2048_bytes </code></pre> <p>You'll need to be root of course.</p> http://stackoverflow.com/questions/876048/why-can-i-define-structures-and-classes-within-a-function-in-c/876069#876069 5 Answer by j_random_hacker for Why can I define structures and classes within a function in C++? j_random_hacker 2009-05-18T02:55:22Z 2009-11-01T06:57:10Z <p>The ability to define classes locally <em>would</em> make creating custom functors (classes with an <code>operator()()</code>, e.g. comparison functions for passing to <code>std::sort()</code> or "loop bodies" to be used with <code>std::for_each()</code>) much more convenient.</p> <p><strong>Unfortunately, C++ forbids using locally-defined classes with templates</strong>, as they have no linkage. Since most applications of functors involve template types that are templated on the functor type, locally defined classes can't be used for this -- you must define them outside the function. :(</p> <p><strong>[EDIT 1/11/2009]</strong></p> <p>The relevant quote from the standard is:</p> <blockquote> <p><strong>14.3.1/2:</strong> .A local type, a type with no linkage, an unnamed type or a type compounded from any of these types shall not be used as a template-argument for a template type-parameter.</p> </blockquote> http://stackoverflow.com/questions/951628/can-you-return-multiple-result-sets-using-pdo-and-postgresql/1513853#1513853 0 Answer by j_random_hacker for Can you return multiple result sets using PDO and PostgreSQL? j_random_hacker 2009-10-03T14:20:04Z 2009-10-03T14:20:04Z <p>Near the bottom of <a href="http://www.postgresql.org/docs/8.4/interactive/plpgsql-cursors.html" rel="nofollow">this PostgreSQL doc page</a>, there is a section describing how you can pass back one or more cursors from a function. Basically, you get the caller to specify the name of the cursor(s) as parameters:</p> <pre><code>CREATE FUNCTION myfunc(refcursor, refcursor) RETURNS SETOF refcursor AS $$ BEGIN OPEN $1 FOR SELECT * FROM table_1; RETURN NEXT $1; OPEN $2 FOR SELECT * FROM table_2; RETURN NEXT $2; END; $$ LANGUAGE plpgsql; -- need to be in a transaction to use cursors. BEGIN; SELECT * FROM myfunc('a', 'b'); FETCH ALL FROM a; FETCH ALL FROM b; COMMIT; </code></pre> <p>The page is for PostgreSQL 8.4, but this documentation snippet is present at least as far back as 8.1 (the version I'm running). As the comment says, you need to be inside a transaction to use cursors, as they are implicitly closed at the end of each transaction (i.e. at the end of every statement if autocommit mode is on).</p> http://stackoverflow.com/questions/1490286/pinnacle-of-encapsulation-question-regarding-advice-from-effective-c/1490336#1490336 1 Answer by j_random_hacker for "Pinnacle" of Encapsulation - Question Regarding Advice from Effective C++ j_random_hacker 2009-09-29T02:47:27Z 2009-09-29T02:47:27Z <p>Actually, providing only accessors and mutators to your class's private variables would in fact not be minimalist (or perhaps minimalist in one sense but not in the "most relevant" sense), as you are now presenting a <em>more general</em> interface to the world. The idea of encapsulation is that your class's interface should be <strong>as restricted as possible</strong> while allowing client code to get the job done.</p> <p>Following this approach makes is easier to change the underlying implementation in the future, which is the point of encapsulation in the first place.</p> http://stackoverflow.com/questions/1452883/is-there-an-c-equivalent-to-pythons-import-bigname-as-b/1452896#1452896 1 Answer by j_random_hacker for Is there an C++ equivalent to Python's "import bigname as b"? j_random_hacker 2009-09-21T04:26:27Z 2009-09-21T04:26:27Z <p>You can use</p> <pre><code>using big_honkin_name::fn; </code></pre> <p>to import all functions named <code>fn</code> from the namespace <code>big_honkin_name</code>, so that you can then write</p> <pre><code>int a = fn(27); </code></pre> <p>But that doesn't let you shrink down the name itself. To do (something similar to but not exactly) that, you could do as follows:</p> <pre><code>int big_honkin_object_name; </code></pre> <p>You can later use:</p> <pre><code>int&amp; x(big_honkin_object_name); </code></pre> <p>And thereafter treat <code>x</code> the same as you would <code>big_honkin_object_name</code>. The compiler will in most cases eliminate the implied indirection.</p> http://stackoverflow.com/questions/1451479/expand-tabs-to-spaces-in-c/1451515#1451515 3 Answer by j_random_hacker for Expand Tabs to Spaces in C? j_random_hacker 2009-09-20T17:26:46Z 2009-09-20T18:16:07Z <p>You need a separate buffer to write the output to, since it will in general be longer than the input:</p> <pre><code>void detab(char* in, char* out, size_t max_len) { size_t i = 0; while (*in &amp;&amp; i &lt; max_len - 1) { if (*in == '\t') { out[i++] = ' '; while (i % 8 &amp;&amp; i &lt; max_len - 1) { out[i++] = ' '; } } else { out[i++] = *in++; } } out[i] = 0; } </code></pre> <p>You must preallocate enough space for <code>out</code> (which in the worst case could be <code>8 * strlen(in) + 1</code>), and <code>out</code> cannot be the same as <code>in</code>.</p> <p><strong>EDIT:</strong> As suggested by Jonathan Leffler, the <code>max_len</code> parameter now makes sure we avoid buffer overflows. The resulting string will always be null-terminated, even if it is cut short to avoid such an overflow. (I also renamed the function, and changed <code>int</code> to <code>size_t</code> for added correctness :).)</p> http://stackoverflow.com/questions/1451160/c-member-function-pointers-and-stl-algorithm-problem/1451316#1451316 1 Answer by j_random_hacker for C++ Member Function Pointers and STL Algorithm Problem j_random_hacker 2009-09-20T15:47:11Z 2009-09-20T16:00:06Z <p>If I understand what you want to do, there are quite a few errors in your code snippet:</p> <ul> <li><code>sizeof aArr</code> is wrong, you need to pass the size explicitly (noticed by ChrisW)</li> <li>Missing <code>virtual</code> specifier on the original declaration of <code>operator()()</code></li> <li>Not sure where your <code>for</code> loop ends as there's no matching <code>}</code> (I suspect it shouldn't be there at all)</li> </ul> <p>Here's some code that will loop through an array of <code>A</code> (or <code>A</code>-derived) objects and call <code>operator()</code> on each one, passing across a passed-in argument as the <code>param</code> parameter:</p> <pre><code>#include &lt;iostream&gt; #include &lt;algorithm&gt; #include &lt;functional&gt; using namespace std; typedef double param; // Just for concreteness class A { public: virtual void operator()(param x) = 0; }; class B : public A { public: void operator()(param x) { cerr &lt;&lt; "This is a B! x==" &lt;&lt; x &lt;&lt; ".\n"; } }; void function(A** aArr, size_t n, param theParam) { void (A::*sFunc)(param x) = &amp;A::operator(); for_each(aArr, aArr + n, bind2nd(mem_fun(sFunc), theParam)); } int main(int argc, char** argv) { A* arr[] = { new B(), new B(), new B() }; function(arr, 3, 42.69); delete arr[0]; delete arr[1]; delete arr[2]; return 0; } </code></pre> <p><code>mem_fun()</code> is necessary to convert a 1-parameter member function pointer to a 2-parameter function object; <code>bind2nd()</code> then produces from that a 1-parameter function object that fixes the argument supplied to <code>function()</code> as the 2nd argument. (<code>for_each()</code> requires a 1-parameter function pointer or function object.)</p> <p><strong>EDIT:</strong> Based on <a href="http://stackoverflow.com/questions/1451160/c-member-function-pointers-and-stl-algorithm-problem/1451279#1451279">Alex Tingle's answer</a>, I infer that you might have wanted <code>function()</code> to do many things on a single <code>A</code>-derived object. In that case, you'll want something like:</p> <pre><code>void function(A** aArr, size_t n, vector&lt;param&gt; const&amp; params) { for (size_t i = 0; i &lt; n; ++i) { void (A::*sFunc)(param x) = &amp;A::operator(); for_each(params.begin(), params.end(), bind1st(mem_fun(sFunc), aArr[i])); } } </code></pre> http://stackoverflow.com/questions/1390296/code-golf-email-address-validation-without-regular-expressions/1390943#1390943 6 Answer by j_random_hacker for Code Golf: Email Address Validation without Regular Expressions j_random_hacker 2009-09-07T20:59:54Z 2009-09-20T14:48:56Z <h1>C89, 175 characters.</h1> <pre><code>#define G &amp;&amp;*((a+=t+1)-1)== #define H (t=strspn(a,A t;e(char*a){char A[66]="_.0123456789Aa";short*s=A+12;for(;++s&lt;A+64;)*s=s[-1]+257;return H))G 64&amp;&amp;H+12))G 46&amp;&amp;H+12))&gt;1 G 0;} </code></pre> <p>I am using the standard library function <code>strspn()</code>, so I feel this answer isn't as "clean" as strager's answer which does without any library functions. (I also stole his idea of declaring a global variable without a type!)</p> <p>One of the tricks here is that by putting <code>.</code> and <code>_</code> at the start of the string <code>A</code>, it's possible to include or exclude them easily in a <code>strspn()</code> test: when you want to allow them, use <code>strspn(something, A)</code>; when you don't, use <code>strspn(something, A+12)</code>. Another is assuming that <code>sizeof (short) == 2 * sizeof (char)</code>, and building up the array of valid characters 2 at a time from the "seed" pair <code>Aa</code>. The rest was just looking for a way to force subexpressions to look similar enough that they could be pulled out into <code>#define</code>d macros.</p> <p>To make this code more "portable" (heh :-P) you can change the array-building code from</p> <pre><code>char A[66]="_.0123456789Aa";short*s=A+12;for(;++s&lt;A+64;)*s=s[-1]+257; </code></pre> <p>to</p> <pre><code>char*A="_.0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; </code></pre> <p>for a cost of 5 additional characters.</p> http://stackoverflow.com/questions/1447554/class-constructor-with-non-argument-template-type/1447611#1447611 1 Answer by j_random_hacker for Class constructor with non-argument template type j_random_hacker 2009-09-19T03:06:07Z 2009-09-19T03:06:07Z <p>litb's and wrang-wrang's answers are good. As one more possibility, you might consider declaring all your (non-copy-) constructors private or protected and creating one or more static member function templates <code>factory create&lt;T&gt;()</code>. Then, to define a factory instance, instead of</p> <pre><code>factory&lt;SomeType&gt; f; // 1 (doesn't compile) </code></pre> <p>You would write</p> <pre><code>factory f(factory::create&lt;SomeType&gt;()); // 2 </code></pre> <p>Clearly not as pretty as (1), but IMHO slightly clearer than using type tags. (The compiler will eliminate the copy in practice.)</p> <p>BTW is there a reason why you could not simply make <code>factory</code> a class template? Then the syntax from (1) would compile. (It would mean however that factories of different types could not be assigned to one another.)</p> http://stackoverflow.com/questions/1442577/is-it-possible-to-compare-two-tables-when-no-common-key-exists-between-them/1442640#1442640 0 Answer by j_random_hacker for Is it possible to compare two tables when no common key exists between them? j_random_hacker 2009-09-18T04:42:47Z 2009-09-18T04:42:47Z <p>Well, there's no 100% guaranteed-correct way, no. But you can probably make some progress by transforming all "messy" columns into a more <strong>canonical form</strong>, e.g. by capitalising everything, trimming leading and trailing spaces and ensuring at most 1 space appears in a row. Also things like changing names of the form "SMITH, JOHN" to "JOHN SMITH" (or vice versa -- just pick a form and go with it). And of course you should make <em>copies</em> of the records, don't change the originals. You can experiment with discarding further information (e.g. "JOHN SMITH" -> "J SMITH") -- you'll find this changes the balance of false positives to false negatives.</p> <p>I would probably take the approach of assigning a similarity score to each pair of records. E.g. if the canonicalised names, addresses and email addresses agree exactly, assign a score of 1000; otherwise, subtract (some multiple of) the <a href="http://en.wikipedia.org/wiki/Levenshtein%5Fdistance" rel="nofollow">Levenshtein distance</a> from 1000 and use that. You'll need to come up with your own scoring scheme by playing around and deciding the relative importance of different types of differences (e.g. a different digit in a phone number is probably more important than a 1-character difference in two people's names). You will then experimentally be able to establish a score above which you can confidently assign a status of "duplicate" to a pair of records, and a lower score above which manual checking is required; below <em>that</em> score, we can confidently say that the 2 records are <em>not</em> duplicates.</p> <p><strong>The realistic goal here is to <em>reduce</em> the amount of manual duplicate-removal work you'll need to do.</strong> You are unlikely to be able to eliminate it entirely, unless all the duplicates were generated through some automatic copying process.</p> http://stackoverflow.com/questions/1442436/script-to-insert-logging-into-every-function-in-a-project/1442582#1442582 4 Answer by j_random_hacker for Script to insert logging into every function in a project? j_random_hacker 2009-09-18T04:22:07Z 2009-09-18T04:22:07Z <p>Since you're using Visual C++, and it seems you only need the name of the function called, it might be possible to automate this further using the following command-line switches to <code>cl.exe</code>:</p> <ul> <li><code>/Gh</code>: Enable <code>_penter</code> function call</li> <li><code>/GH</code>: Enable <code>_pexit</code> function call</li> </ul> <p>Basically, providing these switches means that the compiler will automatically inject calls to functions named <code>_penter()</code> and <code>_pexit()</code> whenever any function begins or ends. You can then provide a separately-compiled module that implements these two functions, which either (a) calls some helper library such as <a href="http://msdn.microsoft.com/en-us/library/ms679294%28VS.85%29.aspx" rel="nofollow">DbgHelp</a> to determine the name of the called function, or (b) just grabs the return address from the stack and prints it verbatim -- afterwards, write a script to transform these addresses into function names by looking at e.g. the linker map file produced if you pass <code>/link /MAP:mymapfile.txt</code> to <code>cl.exe</code>.</p> <p>Of course, you'll need to put your <code>_penter()</code> and <code>_pexit()</code> in a separate module with <code>/Gh</code> and <code>/GH</code> turned off to avoid infinite recursion! :)</p> http://stackoverflow.com/questions/473797/how-to-build-large-applications/474228#474228 9 Answer by j_random_hacker for How to build large applications j_random_hacker 2009-01-23T19:47:04Z 2009-09-16T18:59:09Z <p>As programmers, we like to believe we are smart people, so it's hard to admit that something is too big and complex to even think about all at once. But for a large-scale software project it's true, and the sooner you acknowledge your <strong>finite brain capacity</strong> and start coming up with ways to simplify the problem, the better off you'll be.</p> <p>The other main thing to realise is that you will spend most of your time <strong>changing existing code</strong>. Building the initial codebase is just the honeymoon period -- you need to design your code with the idea in mind that, 6 months later you will be sitting in front of it trying to solve some problem without a clue how this particular module works, even though you wrote it yourself.</p> <p>So, what can we do?</p> <p><strong>Minimise coupling</strong> between unrelated parts of your code. Code is going to change over time in ways you can't anticipate -- there will be showstopper problems integrating with unfamiliar products, requirements changes -- and those will cause ripple-on changes. If you have established stable interfaces and coded to them, you can make any changes you need in the implementation without those changes affecting code that uses the interface. You need to <strong>spend time and effort</strong> developing interfaces that will stand the test of time -- if an interface needs to change too, you're back to square one.</p> <p><strong>Establish automated tests</strong> that you can use for regression testing. Yes, it's a lot of work up front. But it will pay off in the future when you can make a change, run the tests, and establish that <em>it still works</em> without that anxious feeling of wondering if everything will fall over if you commit your latest change to source control.</p> <p><strong>Lay off the tricky stuff.</strong> Every now and then I see some clever C++ template trick and think, "Wow! That's just what my code needs!" But the truth is, the decrease in how readable and readily understandable the code becomes is often simply not worth the increased genericity. If you're someone like me whose natural inclination is to try to solve every problem in as general a manner as possible, you need to learn to restrain it until you actually come across the <em>need</em> for that general solution. If that <em>need</em> arises, you might have to rewrite some code -- it's no big deal.</p> http://stackoverflow.com/questions/1434550/porting-shell-functions-to-cmd-exe-is-it-possible-to-automatically-source-script/1434703#1434703 2 Answer by j_random_hacker for Porting shell functions to cmd.exe: Is it possible to automatically source scripts on startup? j_random_hacker 2009-09-16T18:30:59Z 2009-09-16T18:30:59Z <p>You can set either of the following registry keys to a batch file or other executable to run that program when <code>CMD</code> is started:</p> <pre><code>HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun </code></pre> <p>A batch file should be able to change the current directory of the executing <code>CMD</code> process with the <code>CD</code> command, as it doesn't run as a subprocess. You can disable the autorun behaviour by supplying <code>/D</code> as a switch to <code>CMD</code>.</p> <p>See <code>CMD /?</code> for more details.</p> http://stackoverflow.com/questions/1433903/extract-the-filename-from-the-first-argument/1433975#1433975 3 Answer by j_random_hacker for Extract the filename from the first argument j_random_hacker 2009-09-16T16:13:44Z 2009-09-16T16:32:15Z <p>If <code>%1</code> will contain just a filename (no path):</p> <pre><code>echo %~n1 </code></pre> <p>If it could contain a path:</p> <pre><code>echo %~dpn1 </code></pre> <p>will give you the absolute pathname.</p> <p><strong>Beautiful isn't it!</strong> :-P <strong>[EDIT: These forms happily deal with quoted arguments, dequoting them in the process, as Johannes points out in a comment.]</strong></p> <p>For more info: <code>help for</code>. That's right, the relevant help is under the <code>FOR</code> command. Which indicates that this syntax only works with <code>FOR</code> loop variables. But actually it seems to work fine with <code>%1</code>, <code>%2</code>, etc. Which might make you think that it would work with any environment variable -- but it doesn't.</p> <p>I love <code>CMD.EXE</code>.</p> http://stackoverflow.com/questions/1433855/is-there-an-easy-way-to-find-two-values-that-when-multiplied-together-produce-a/1433896#1433896 7 Answer by j_random_hacker for Is there an easy way to find two values that, when multiplied together, produce an exact bit pattern? j_random_hacker 2009-09-16T15:59:16Z 2009-09-16T15:59:16Z <p>This problem sounds like <a href="http://en.wikipedia.org/wiki/Integer%5Ffactorization" rel="nofollow">integer factorisation</a>. No fast algorithms are known unfortunately, but from glancing at that Wikipedia page it seems there are some (possibly tricky) algorithms that are faster than trial division.</p> http://stackoverflow.com/questions/1408695/b-tree-implementation-vs/1408802#1408802 1 Answer by j_random_hacker for B+ tree implementation, * * vs * j_random_hacker 2009-09-11T03:15:12Z 2009-09-11T03:15:12Z <p>Using <code>**</code>, you need an extra allocation step to hold each <code>BPlusNode*</code> child pointer. Or you could allocate a block of them and just have each pointer in <code>children</code> point to sequential <code>BPlusNode*</code> elements inside this block -- but it's still one extra dynamic memory allocation per node creation (and a corresponding extra deallocation step on destruction). So I would absolutely recommend using a single <code>*</code>. If writing</p> <pre><code>someFunction((currNode-&gt;children) + ChildIndex); </code></pre> <p>hurts you, you can rewrite it as</p> <pre><code>someFunction(&amp;currNode-&gt;children[ChildIndex]); </code></pre> <p>which I find clearer.</p> http://stackoverflow.com/questions/1395601/whats-the-complete-list-of-kinds-of-automatic-type-conversions-a-c-compiler/1395779#1395779 3 Answer by j_random_hacker for What's the -complete- list of kinds of automatic type conversions a C++ compiler will do for a function argument? j_random_hacker 2009-09-08T19:09:25Z 2009-09-08T19:09:25Z <p>Unfortunately the answer to your question is hugely complex, occupying at least 9 pages in the ISO C++ standard (specifically: ~6 pages in "3 Standard Conversions" and ~3 pages in "13.3.3.1 Implicit Conversion Sequences").</p> <p><strong>Brief summary:</strong> A conversion that does not require a cast is called an "implicit conversion sequence". C++ has "standard conversions", which are conversions between fundamental types (such as <code>char</code> being promoted to <code>int</code>) and things such as array-to-pointer decay; there can be several of these in a row, hence the term "sequences". C++ also permits user-defined conversions, which are defined by conversion functions and converting constructors. The important thing to note is that <strong>an implicit conversion sequence can have <em>at most one</em> user-defined conversion</strong>, with optionally a sequence of standard conversions on either side -- C++ will never "chain" more than one user-defined conversion together without a cast.</p> <p>(If anyone would like to flesh this post out with the full details, please go ahead... But for me, that would just be too exhausting, sorry :-/)</p> http://stackoverflow.com/questions/1387647/persistant-references-in-stl-containers/1387747#1387747 9 Answer by j_random_hacker for Persistant references in STL Containers j_random_hacker 2009-09-07T05:58:36Z 2009-09-07T05:58:36Z <p>About inserting into vectors, the standard says in 23.2.4.3/1:</p> <blockquote> <p>[<code>insert()</code>] causes reallocation if the new size is greater than the old capacity. If no reallocation happens, all the iterators and references before the insertion point remain valid.</p> </blockquote> <p>(Although this in fact this talks about <code>insert()</code>, Table 68 indicates that <code>a.push_back(x)</code> must be equivalent to <code>a.insert(a.end(), x)</code> for any vector <code>a</code> and value <code>x</code>.) This means that if you <code>reserve()</code> enough memory beforehand, then (and only then) iterators and references are guaranteed not to be invalidated when you <code>insert()</code> or <code>push_back()</code> more items.</p> <p>Regarding removing items, 23.2.4.3/3 says:</p> <blockquote> <p>[<code>erase()</code>] invalidates all the iterators and references after the point of the erase.</p> </blockquote> <p>According to Table 68 and Table 67 respectively, <code>pop_back()</code> and <code>clear()</code> are equivalent to appropriate calls to <code>erase()</code>.</p> http://stackoverflow.com/questions/1386183/how-to-call-a-templated-function-if-it-exists-and-something-else-otherwise/1386324#1386324 2 Answer by j_random_hacker for How to call a templated function if it exists, and something else otherwise? j_random_hacker 2009-09-06T18:23:29Z 2009-09-06T19:38:57Z <p><strong>EDIT: I spoke too soon! <a href="http://stackoverflow.com/questions/1386183/how-to-call-a-templated-function-if-it-exists-and-something-else-otherwise/1386390#1386390">litb's answer</a> shows how this can actually be done (at the possible cost of your sanity... :-P)</strong></p> <p>Unfortunately I think the general case of checking "would this compile" is out of reach of <a href="http://semantics.org/once%5Fweakly/w02%5FSFINAE.pdf" rel="nofollow">function template argument deduction + SFINAE</a>, which is the usual trick for this stuff. I think the best you can do is to create a "backup" function template:</p> <pre><code>template &lt;typename T&gt; void bar(T t) { // "Backup" bar() template baz(t); } </code></pre> <p>And then change <code>foo()</code> to simply:</p> <pre><code>template &lt;typename T&gt; void foo(const T&amp; t) { bar(t); } </code></pre> <p>This will work for most cases. Because the <code>bar()</code> template's parameter type is <code>T</code>, it will be deemed "less specialised" when compared with any other function or function template named <code>bar()</code> and will therefore cede priority to that pre-existing function or function template during overload resolution. Except that:</p> <ul> <li>If the pre-existing <code>bar()</code> is itself a function template taking a template parameter of type <code>T</code>, an ambiguity will arise because neither template is more specialised than the other, and the compiler will complain.</li> <li>Implicit conversions also won't work, and will lead to hard-to-diagnose problems: Suppose there is a pre-existing <code>bar(long)</code> but <code>foo(123)</code> is called. In this case, the compiler will quietly choose to instantiate the "backup" <code>bar()</code> template with <code>T = int</code> instead of performing the <code>int-&gt;long</code> promotion, even though the latter would have compiled and worked fine!</li> </ul> <p>In short: there's no easy, complete solution, and I'm pretty sure there's not even a tricky-as-hell, complete solution. :(</p> http://stackoverflow.com/questions/1368960/how-can-i-modify-an-existing-excel-workbook-with-perl/1372471#1372471 3 Answer by j_random_hacker for How can I modify an existing Excel workbook with Perl? j_random_hacker 2009-09-03T09:50:02Z 2009-09-05T23:05:21Z <p>If you have Excel installed, then it's almost trivial to do this with <a href="http://search.cpan.org/perldoc?Win32%3A%3AOLE" rel="nofollow"><code>Win32::OLE</code></a>. Here is the example from <code>Win32::OLE</code>'s own documentation:</p> <pre><code>use Win32::OLE; # use existing instance if Excel is already running eval {$ex = Win32::OLE-&gt;GetActiveObject('Excel.Application')}; die "Excel not installed" if $@; unless (defined $ex) { $ex = Win32::OLE-&gt;new('Excel.Application', sub {$_[0]-&gt;Quit;}) or die "Oops, cannot start Excel"; } # get a new workbook $book = $ex-&gt;Workbooks-&gt;Add; # write to a particular cell $sheet = $book-&gt;Worksheets(1); $sheet-&gt;Cells(1,1)-&gt;{Value} = "foo"; # write a 2 rows by 3 columns range $sheet-&gt;Range("A8:C9")-&gt;{Value} = [[ undef, 'Xyzzy', 'Plugh' ], [ 42, 'Perl', 3.1415 ]]; # print "XyzzyPerl" $array = $sheet-&gt;Range("A8:C9")-&gt;{Value}; for (@$array) { for (@$_) { print defined($_) ? "$_|" : "&lt;undef&gt;|"; } print "\n"; } # save and exit $book-&gt;SaveAs( 'test.xls' ); undef $book; undef $ex; </code></pre> <p>Basically, <code>Win32::OLE</code> gives you everything that is available to a VBA or Visual Basic application, which includes a huge variety of things -- everything from Excel and Word automation to enumerating and mounting network drives via Windows Script Host. It has come standard with the last few editions of ActivePerl.</p> http://stackoverflow.com/questions/1382540/static-cast-vs-dymamic-cast-for-traversing-inheritance-hierarchies/1382565#1382565 6 Answer by j_random_hacker for Static cast vs. dymamic cast for traversing inheritance hierarchies j_random_hacker 2009-09-05T05:36:41Z 2009-09-05T05:36:41Z <p>It's <em>much</em> better to avoid switching on types at all if possible. This is usually done by moving the relevant code to a virtual method that is implemented differently for different subtypes:</p> <pre><code>class Shape { public: virtual ~Shape() {}; virtual void announce() = 0; // And likewise redeclare in Circle and Square. }; void Circle::announce() { cout &lt;&lt; "It's a circle!" &lt;&lt; endl; } void Square::announce() { cout &lt;&lt; "It's a square!" &lt;&lt; endl; } // Later... s-&gt;announce(); </code></pre> <p>If you are working with a pre-existing inheritance hierarchy that you can't change, investigate the <a href="http://en.wikipedia.org/wiki/Visitor%5Fpattern" rel="nofollow">Visitor pattern</a> for a more extensible alternative to type-switching.</p> <p><strong>More info:</strong> <code>static_cast</code> does <em>not</em> require RTTI, but a downcast using it can be unsafe, leading to undefined behaviour (e.g. crashing). <code>dynamic_cast</code> is safe but slow, because it checks (and therefore requires) RTTI info. The old C-style cast is even more unsafe than <code>static_cast</code> because it will quietly cast across completely unrelated types, where <code>static_cast</code> would object with a compile-time error.</p> http://stackoverflow.com/questions/1382538/how-do-you-prevent-hired-developers-from-stealing-code/1382546#1382546 6 Answer by j_random_hacker for How do you prevent hired developers from stealing code? j_random_hacker 2009-09-05T05:27:36Z 2009-09-05T05:27:36Z <p>My suggestion is not technical but social: <strong>Make them feel good.</strong></p> <p>Most human beings have a moral base that prevents them from hurting other people who have treated them with respect and generosity.</p> <p>There's a slim chance you'll wind up hiring a psychopath, in which case this approach won't work -- but then, it's likely to be the least of your worries.</p> http://stackoverflow.com/questions/1353407/var-args-last-named-parameter-not-function-or-array/1353539#1353539 1 Answer by j_random_hacker for Var-Args: Last named parameter not function or array? j_random_hacker 2009-08-30T10:04:01Z 2009-08-30T10:04:01Z <p>I can only guess that the <code>register</code> restriction is there to ease library/compiler implementation -- it eliminates a special case for them to worry about.</p> <p>But I have no clue about the array/function restriction. If it were in the C++ standard only, I would hazard a guess that there is some obscure template matching scenario where the difference between a parameter of type <code>T[]</code> and of type <code>T*</code> makes a difference, correct handling of which would complicate <code>va_start</code> etc. But since this clause appears in the C standard too, obviously that explanation is ruled out.</p> <p>My conclusion: an oversight in the standards. Possible scenario: some pre-standard C compiler implemented parameters of type <code>T[]</code> and <code>T*</code> differently, and the spokesperson for that compiler on the C standards committee had the above restrictions added to the standard; that compiler later became obsolete, but no-one felt the restrictions were compelling enough to update the standard.</p> http://stackoverflow.com/questions/1322793/bit-twiddling-find-next-power-of-two-with-templates-in-c/1324007#1324007 0 Answer by j_random_hacker for Bit twiddling: find next power of two with templates in c++ j_random_hacker 2009-08-24T18:37:54Z 2009-08-25T09:56:25Z <p>You could improve things slightly by changing the loop test to check whether the number is one less than a power of 2:</p> <pre><code>template &lt;typename T&gt; T nextPowerOfTwo(T n) { std::size_t k=1; --n; do { n |= n &gt;&gt; k; k &lt;&lt;= 1; } while (n &amp; (n + 1)); return n + 1; } </code></pre> <p>The algorithm is now O(log2(n)) rather than O(width_of_T_in_bits). This should help for small <code>n</code>, or if <code>n</code> often contains many 1 bits (though the latter doesn't appear in the improved time bound).</p> <p>Of course it may actually be slower, since the loop test is now probably 2 CPU instructions vs a single instruction in yours.</p> <p><strong>EDIT 25/8/2009:</strong> Thanks to hacker for noticing a very stupid bug! Now fixed.</p> http://stackoverflow.com/questions/1326118/sum-of-square-of-each-elements-in-the-vector-using-foreach/1326160#1326160 3 Answer by j_random_hacker for sum of square of each elements in the vector using for_each j_random_hacker 2009-08-25T05:08:06Z 2009-08-25T05:08:06Z <p>Don't use <code>for_each()</code> for this, use <code>accumulate()</code> from the <code>&lt;numeric&gt;</code> header:</p> <pre><code>#include &lt;numeric&gt; #include &lt;iostream&gt; using namespace std; struct accum_sum_of_squares { // x contains the sum-of-squares so far, y is the next value. int operator()(int x, int y) const { return x + y * y; } }; int main(int argc, char **argv) { int a[] = { 4, 5, 6, 7 }; int ssq = accumulate(a, a + sizeof a / sizeof a[0], 0, accum_sum_of_squares()); cout &lt;&lt; ssq &lt;&lt; endl; return 0; } </code></pre> <p>The default behaviour of <code>accumulate()</code> is to sum elements, but you can provide your own function or functor as we do here, and the operation it performs need not be associative -- the 2nd argument is always the next element to be operated on. This operation is sometimes called <code>reduce</code> in other languages.</p> <p>You could use a plain function instead of the <code>accum_sum_of_squares</code> functor, or for even more genericity, you could make <code>accum_sum_of_squares</code> a class template that accepts any numeric type.</p> http://stackoverflow.com/questions/226282/what-are-the-most-hardcore-optimisations-youve-seen/1321551#1321551 4 Answer by j_random_hacker for What are the most hardcore optimisations you've seen? j_random_hacker 2009-08-24T10:19:24Z 2009-08-24T11:08:45Z <h2>A Very Biological Optimisation</h2> <p><strong>Quick background:</strong> Triplets of DNA nucleotides (A, C, G and T) encode amino acids, which are joined into proteins, which are what make up most of most living things.</p> <p>Ordinarily, each different protein requires a separate sequence of DNA triplets (its "gene") to encode its amino acids -- so e.g. 3 proteins of lengths 30, 40, and 50 would require 90 + 120 + 150 = 360 nucleotides in total. However, in viruses, space is at a premium -- so <strong>some viruses overlap the DNA sequences for different genes</strong>, using the fact that there are 6 possible "reading frames" to use for DNA-to-protein translation (namely starting from a position that is divisible by 3; from a position that divides 3 with remainder 1; or from a position that divides 3 with remainder 2; and the same again, but reading the sequence in reverse.)</p> <p>For comparison: Try writing an x86 assembly language program where the 300-byte function <code>doFoo()</code> begins at offset 0x1000... and another 200-byte function <code>doBar()</code> starts at offset 0x1001! (I propose a name for this competition: <em>Are you smarter than Hepatitis B?</em>)</p> <p>That's <em>hardcore</em> space optimisation!</p> <p><strong>UPDATE:</strong> Links to further info:</p> <ul> <li><a href="http://en.wikipedia.org/wiki/Reading%5Fframe" rel="nofollow">Reading Frames on Wikipedia</a> suggests Hepatitis B and "Barley Yellow Dwarf" virus (a plant virus) both overlap reading frames.</li> <li><a href="http://en.wikipedia.org/wiki/Hepatitis%5FB%5Fvirus#Genome" rel="nofollow">Hepatitis B genome info on Wikipedia</a>. Seems that different reading-frame subunits produce different variations of a surface protein.</li> <li>Or you could <a href="http://www.google.co.nz/search?q=overlapping+reading+frames" rel="nofollow">google for "overlapping reading frames"</a></li> <li>Seems this can even happen in <em>mammals</em>! <a href="http://www.nature.com/embor/journal/v2/n9/full/embor338.html" rel="nofollow">Extensively overlapping reading frames in a second mammalian gene </a> is a 2001 scientific paper by Marilyn Kozak that talks about a "second" gene in rat with "extensive overlapping reading frames". (This is quite surprising as mammals have a genome structure that provides ample room for separate genes for separate proteins.) Haven't read beyond the abstract myself.</li> </ul> http://stackoverflow.com/questions/1317130/random-segfaults-in-c/1317154#1317154 1 Answer by j_random_hacker for Random segfaults in C++ j_random_hacker 2009-08-22T22:01:06Z 2009-08-23T10:08:36Z <p>Others (e.g. Goz) have provided the correct answer -- the values of uninitialised variables cannot be relied on as they vary from run to run. As others have pointed out, it's also risky to allocate large arrays on the stack as stack space is usually more scarce than heap space.</p> <p>As a side issue, allocating arrays of variable size in the way that you are with <code>primes[max]</code> is not standard-compliant C++, but rather a g++ extension, so your code as it stands is unlikely to work with other compilers. You could use <code>new</code> and <code>delete</code> instead -- but it's even better to get into the habit of using <code>vector&lt;int&gt;</code> in these situations since it will do the cleanup for you.</p> <p><strong>[EDIT: Thanks Will for pointing out that the real root cause of trouble was elsewhere.]</strong></p> http://stackoverflow.com/questions/1316567/linux-distribution-for-a-programmers-private-server/1316579#1316579 1 Answer by j_random_hacker for Linux distribution for a programmer's private server j_random_hacker 2009-08-22T17:55:44Z 2009-08-22T17:55:44Z <p>It doesn't sound like you have demanding requirements at all, so I'd probably go with something easy to set up. I believe <a href="http://www.ubuntu.com/" rel="nofollow">Ubuntu</a> is pretty good in this regard.</p> <p>You might also want to look into <a href="http://en.wikipedia.org/wiki/Virtual%5FNetwork%5FComputing" rel="nofollow">VNC</a>, which is a bit like a free, cross-platform Remote Desktop.</p> http://stackoverflow.com/questions/1316170/having-an-image-file-buffer-in-memory-what-is-the-fastest-way-to-create-its-thum/1316294#1316294 2 Answer by j_random_hacker for Having an image file buffer in memory, what is the fastest way to create its thumbnail? j_random_hacker 2009-08-22T16:04:56Z 2009-08-22T16:04:56Z <p>I take it that the problem is that it takes longer to convert an image to a thumbnail than to acquire the image in the first place, correct?</p> <p>Although a faster thumbnail conversion program might fix the problem for you, it might not be sufficient for someone with a slower computer. Instead, I suggest creating a queue of images to be converted to thumbnails -- i.e. you have one thread (or process) which adds scanned images to the queue, and another thread/process that removes images from that queue and creates thumbnails from them. This way the relative speeds of the two operations don't matter.</p> http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744647#1744647 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-19T02:59:37Z 2009-11-19T02:59:37Z So you're saying: Over time, other statements can accrete inside the <code>try</code> block and then you aren't certain any more that the <code>catch</code> block is really catching the thing you thought it was catching -- is that right? While it's harder to misuse the if/then/else approach in the same way because you can only test 1 thing at a time rather than a set of things at once, so the exceptiony approach can lead to more fragile code. If so please discuss this in your answer and I'll happily +1, as I think code fragility is a bona fide reason. http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1746311#1746311 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-19T02:47:23Z 2009-11-19T02:47:23Z I agree with you as far as all rules of thumb have long lists of caveats. Where I disagree is that I think it's worthwhile trying to identify the original reasons for the rule, as well as the specific caveats. (I mean in an ideal world, where we have infinite time to ponder these things and no deadlines of course ;)) I think that's what the OP was asking for. http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744483#1744483 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-19T02:25:57Z 2009-11-19T02:25:57Z Hehe imagine that... Exceptions as an <i>optimisation technique</i> :) http://stackoverflow.com/questions/1755010/best-way-to-return-early-from-a-function-returning-a-reference Comment by j_random_hacker on Best way to return early from a function returning a reference j_random_hacker 2009-11-18T12:33:36Z 2009-11-18T12:33:36Z @Whyamistilltyping: If you use an assertion, and it sounds like you (a) should be and (b) are already doing so, you don't need to return anything. You don't need that <code>if (!SomeCondition)</code> at all -- just replace that whole block with <code>assert(SomeCondition);</code>. http://stackoverflow.com/questions/1755000/passing-around-fixed-size-arrays-in-c/1755042#1755042 Comment by j_random_hacker on Passing around fixed-size arrays in C++? j_random_hacker 2009-11-18T12:18:51Z 2009-11-18T12:18:51Z @Adrien: It will compile, but the compiler will ignore the number 3, silently &quot;decaying&quot; the type of result from <code>int result[3]</code> to <code>int &#42;result</code> (usually without even giving a warning). Which is a bit sneaky of the compiler if you ask me ;) http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744084#1744084 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-18T11:52:10Z 2009-11-18T11:52:10Z @Developer Art: Thanks for the update. One reason you gave that I haven't seen mentioned yet is that in practice, we live in an imperfect world where not all of the surrounding code is necessarily exception-safe, and without having that guarantee throwing exceptions willy-nilly is very dangerous. +1. http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744176#1744176 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-18T11:44:42Z 2009-11-18T11:44:42Z @R. Pate: In case your response &quot;Proof by analogy...&quot; was directed at me: What I was trying to say is that I think your use of exceptions to escape from postconditions that can't be satisfied is a perfectly good and valid use of the exception-handling mechanism provided by the language (or equivalently, you described a good way to cook a meal using an oven). What I'm asking is whether there are other useful things that might be done with the exception-handling mechanism provided by the language (other things that could be done with the oven besides cooking). http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744647#1744647 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-18T11:28:27Z 2009-11-18T11:28:27Z Thanks for elaborating, but IMHO your 2 code snippets have almost identical complexity -- both use highly localised control logic. Where the complexity of exceptions most clearly exceeds that of it/then/else is when you have a bunch of statements inside the try block, any one of which could throw -- would you agree? http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744483#1744483 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-18T11:22:31Z 2009-11-18T11:22:31Z @Dan: Thanks for the clarification, I agree with a lot of what you say. Although performance may be the only <i>objective</i> criterion, I think it's often much less useful than other (unfortunately subjective) criteria like maintainability. (As an aside, I was surprised to see just how slow the exceptions made things in your tests -- I hacked together the moral equivalent of your Example 1 in C++, and the exception-using version is ~10 times slower using g++ or only about twice as slow using MSVC++ on my machine.) http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1745529#1745529 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-18T10:44:26Z 2009-11-18T10:44:26Z IMHO you haven't explained <i>why</i> the conservatism is necessary. Why are they only &quot;appropriate&quot; sometimes? Why not all the time? (BTW I think your suggested approach is just fine, it's more or less what I do myself, I just don't think it gets at much of the <i>why</i> of the question.) http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1746311#1746311 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-18T10:32:58Z 2009-11-18T10:32:58Z There may be no definitive &quot;why&quot;, but there are partial &quot;why&quot;s that others mention, e.g. &quot;because that's what everyone else is doing&quot; (IMHO a sad but real reason) or &quot;performance&quot; (IMHO this reason is usually overstated, but it's a reason nonetheless). The same is true of the other rules of thumb like avoiding goto (usually, it complicates control flow analysis more than an equivalent loop) and avoiding global variables (they potentially introduce a lot of coupling, making later code changes difficult, and usually the same goals can be achieved with less coupling other ways). http://stackoverflow.com/questions/1557352/how-do-i-escape-the-constiterator-trap-when-passing-a-const-container-reference/1557443#1557443 Comment by j_random_hacker on How do I escape the const_iterator trap when passing a const container reference as a parameter j_random_hacker 2009-11-17T08:49:50Z 2009-11-17T08:49:50Z +1 since a postcondition in the comments is about all you can practically do in C++ -- but it's not the ideal solution. Catskul's last comment is illuminating. http://stackoverflow.com/questions/1557352/how-do-i-escape-the-constiterator-trap-when-passing-a-const-container-reference/1558676#1558676 Comment by j_random_hacker on How do I escape the const_iterator trap when passing a const container reference as a parameter j_random_hacker 2009-11-17T08:47:38Z 2009-11-17T08:47:38Z +1, excellent post. (It's unfortunate that C++ is not more orthogonal so that we could forget about binding to temporaries being a special case.) The basis of the problem is that <code>const</code> is not granular enough for what Catskul wants -- it's an all-or-nothing proposition. But as you demonstrate with your mutating-predicate example, it's hard to imagine a more granular form of <code>const</code> that doesn't allow all kinds of &quot;surprising&quot; behaviour. IOW it's hard to imagine a more-granular form of <code>const</code> that is practically useful. http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1745529#1745529 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-17T08:20:17Z 2009-11-17T08:20:17Z -1. Please read the question carefully. Most programmers either think that exceptions are appropriate for certain types of error handling, or that they are never appropriate -- they don't even consider the possibility of using them for other, more exotic forms of flow control. The question is: why is that? http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1746311#1746311 Comment by j_random_hacker on Why should exceptions be used conservatively? j_random_hacker 2009-11-17T08:12:40Z 2009-11-17T08:12:40Z ... and the asker would like to know <i>why</i> it is a rule of thumb, rather than hear (yet again) that it's a rule of thumb. -1.