User wilhelmtell - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T20:09:16Zhttp://stackoverflow.com/feeds/user/456http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814189/how-to-change-string-into-qstring/1814204#18142042Answer by wilhelmtell for How to change string into QString?wilhelmtell2009-11-29T00:04:23Z2009-11-29T00:04:23Z<pre><code>std::string s = "Sambuca";
QString q = s.c_str();
</code></pre>
http://stackoverflow.com/questions/1774187/is-the-order-of-initialization-guaranteed-by-the-standard/1774200#17742001Answer by wilhelmtell for Is the order of initialization guaranteed by the standard?wilhelmtell2009-11-21T01:35:19Z2009-11-21T01:35:19Z<p>Yes. A good compiler should warn you that <code>A::d2</code> will be initialized after <code>A::d1</code>.</p>
http://stackoverflow.com/questions/1745614/insert-a-hyphen-into-a-string-c/1745699#17456990Answer by wilhelmtell for insert a hyphen into a string C++wilhelmtell2009-11-17T00:00:55Z2009-11-17T00:09:14Z<p>What you want is to add two characters to each string, in two specific positions.</p>
<p>Create a function that takes a single phone number string and adds the hyphens where appropriate. This is a good example where it's easy to just use string concatenation, but it's a bad habit. Instead, you can use <code>string::insert()</code> to place the hyphens where appropriate.</p>
<p>Once you have this simple function written all you have to do is iterate over the array and apply the function on each element. Coincidentally the <code>for_each()</code> function can do just that. You will find it in <code><algorithm></code>.</p>
<pre><code>#include<string>
#include<algorithm>
void with_hyphens(string& phone)
{
// as explained above
}
// ...
{
for_each(array, array + ARRAY_LENGTH, &with_hyphens);
}
</code></pre>
http://stackoverflow.com/questions/1739853/c-problems-and-solutions/1739874#17398741Answer by wilhelmtell for C Problems and Solutionswilhelmtell2009-11-16T03:20:31Z2009-11-16T03:20:31Z<p>Write a compiler. It doesn't need to be complex or even complete: you can make up a simple language (a subset of lisp?) and then write a lexer for it. Make sure you start by laying down the formal grammar. You will touch memory management, pointer arithmetics and other neat C stuff.</p>
<p>I learnt a great deal about automata and compiler-design by writing a simple YAML parser in C++.</p>
http://stackoverflow.com/questions/1736017/getting-union-intersection-or-difference-of-sets-in-c/1736052#17360528Answer by wilhelmtell for Getting Union, Intersection, or Difference of Sets in C++wilhelmtell2009-11-15T00:03:07Z2009-11-15T00:03:07Z<p>Use the <a href="http://www.cplusplus.com/reference/algorithm/set%5Fdifference/" rel="nofollow"><code>set_difference()</code></a>, <a href="http://www.cplusplus.com/reference/algorithm/set%5Funion/" rel="nofollow"><code>set_union()</code></a>, <a href="http://www.cplusplus.com/reference/algorithm/set%5Fintersection/" rel="nofollow"><code>set_intersection()</code></a> and <a href="http://www.cplusplus.com/reference/algorithm/set%5Fsymmetric%5Fdifference/" rel="nofollow"><code>set_symmetric_difference()</code></a> functions.</p>
<p>Sets and maps support any key type that can compare. By default this means the type has <code>operator<()</code> defined, but you can provide your own comparator. C++ sets don't have <code>operator<()</code> defined and therefore can't be used as keys unless you provide your own comparator.</p>
http://stackoverflow.com/questions/1712562/isnt-there-a-point-where-encapsulation-gets-ridiculous/1712597#17125974Answer by wilhelmtell for Isn't there a point where encapsulation gets ridiculous?wilhelmtell2009-11-11T02:21:17Z2009-11-11T02:21:17Z<p>I absolutely agree with you. But in life you should probably do The Right Thing: in school, it's to get good marks. In your workplace it's to fulfill specs. If you want to be stubborn, then that's fine, but do explain yourself -- cover your bases in comments to minimize the damage you might get.</p>
<p>In your particular example above I can see you might want to validate, say, the URL. Maybe you'd even want to sanitize the title and the description, but either way I think this is the sort of thing you can tell early on in the class design. State your intentions and your rationale in comments. If you don't need validation then you don't need a getter and setter, you're absolutely right.</p>
<p>Simplicity pays, it's a valuable feature. Never do anything religiously.</p>
http://stackoverflow.com/questions/1708867/check-type-of-element-in-stl-container-c/1709100#17091000Answer by wilhelmtell for check type of element in stl container - c++wilhelmtell2009-11-10T16:10:11Z2009-11-10T16:18:50Z<p>You need to give us more context. If you mean you want the value known at compiletime so it's easy to change it then use <code>container::value_type</code>.</p>
<pre><code>typedef vector<int> coordinates;
coordinates seq;
fib::value_type elem = seq.back(); // it's easy to change int type
</code></pre>
<p>If what you mean is that the container may hold various concrete (derived) types and you wish to know them at runtime then you should probably re-evaluate your approach. In object-oriented programming hiding the type at runtime is sometimes a powerful approach, because it means you make fewer assumptions about what you're working with. You can of course use RTTI, but there's probably a better way: we'd need more context to tell.</p>
<p>If you wish to compare types then you're probably heading the runtime path. C++ supports polymorphism, which is essentially that type-comparison you're looking after -- but built into the language. You want to execute a different set of instructions based on the type? Polymorphism allows you to execute a different function based on the type of the object. You need not write a single extra line of code -- only derive from a common base.</p>
http://stackoverflow.com/questions/1704165/is-there-a-way-to-improve-the-speed-or-efficiency-of-this-lookup-c-c/1704348#17043481Answer by wilhelmtell for Is there a way to improve the speed or efficiency of this lookup? (C/C++)wilhelmtell2009-11-09T22:25:38Z2009-11-09T22:32:39Z<p>You don't need to copy input into num, because you pass it by value. You can also compute the length of charset in compiletime, there's no need to compute it in runtime every single time you call the function.</p>
<p>But these are very minor performance issues. I think the the most significant help you can gain is by avoiding the string concatenation in the loop. When you construct the key string pass the string constructor the length of your result string so that there is only one allocation for the string. Then in the loop when you concatenate into the string you will not re-allocate.</p>
<p>You can make things even slightly more efficient if you take the target string as a reference parameter or even as two iterators like the standard algorithms do. But that is arguably a step too far.</p>
<p>By the way, what if the value passed in for input is zero? You won't even enter the loop; shouldn't key then be "0"?</p>
<p>I see the value passed in for input can't be negative, but just so we note: the C remainder operator isn't a modulo operator.</p>
http://stackoverflow.com/questions/1696824/c-array-with-elements-varying-in-size/1696866#16968662Answer by wilhelmtell for C: Array with elements varying in sizewilhelmtell2009-11-08T15:29:17Z2009-11-08T15:36:30Z<p>No, C arrays have a constant size that must be known at compiletime. But you can go around this by using pointers and dynamic allocation.</p>
<p>The problem here is not efficiency as much as as it is type safety. Casting has no runtime performance cost, it's only a mechanism for talking to the compiler, ask it to "trust you" and assume there's a certain type behind a sequence of bits. We're talking about safety because if you're wrong then anything at all can happen in runtime.</p>
<p>It is impossible in C (a static language) to construct an array of different types. What you can do is construct an array of a certain struct but have that struct hold pointers to objects of varying sizes. For instance, have the struct hold a <code>char*</code> pointer, in which case each object holds a string of one length or another and thus have a variable size (in terms of total memory used in runtime, not in terms of contiguous space used).</p>
<p>If you want each of these objects to <em>behave</em> differently then others then you can emulate polymorphism by using an array of function pointers and then add a function pointer to the struct that points to any of the functions as necessary.</p>
http://stackoverflow.com/questions/1668655/string-undeclared-in-c/1668683#16686831Answer by wilhelmtell for String Undeclared In C++wilhelmtell2009-11-03T16:57:17Z2009-11-03T16:57:17Z<p>Add <code>using namespace std;</code> above the <code>main()</code> definition.</p>
<p>Also, you don't need <code><stdio.h></code> if you include <code><iostream></code>. Also, in C++ a function that doesn't take arguments doesn't need a "<code>void</code>" argument, simply use parentheses with nothing in between them.</p>
http://stackoverflow.com/questions/1657883/variable-number-of-arguments-in-c/1657924#16579245Answer by wilhelmtell for Variable number of arguments in C++?wilhelmtell2009-11-01T18:38:42Z2009-11-01T18:47:22Z<p>You probably shouldn't, and you can probably do what you want to do in a safer and simpler way. Technically to use variable number of arguments in C you include stdarg.h. From that you'll get the <code>va_list</code> type as well as three functions that operate on it called <code>va_start()</code>, <code>va_arg()</code> and <code>va_end()</code>.</p>
<pre><code>#include<stdarg.h>
int maxof(int n_args, ...)
{
va_list ap;
va_start(ap, n_args);
int max = va_arg(ap, int);
for(int i = 2; i <= n_args; i++) {
int a = va_arg(ap, int);
if(a > max) max = a;
}
va_end(ap);
return max;
}
</code></pre>
<p>If you ask me, this is a mess. It looks bad, it's unsafe, and it's full of technical details that have nothing to do with what you're conceptually trying to achieve. Instead, consider using overloading or inheritance/polymorphism, builder pattern (as in <code>operator<<()</code> in streams) or default arguments etc. These are all safer: the compiler gets to know more about what you're trying to do so there are more occasions it can stop you before you blow your leg off.</p>
http://stackoverflow.com/questions/1657484/can-you-give-an-example-of-stack-overflow-in-c/1657873#16578732Answer by wilhelmtell for Can you give an example of stack overflow in C++?wilhelmtell2009-11-01T18:19:40Z2009-11-01T18:19:40Z<p>Compile-time example:</p>
<pre><code>template <int N>
struct Factorial {
enum { value = N * Factorial<N - 1>::value };
};
// ...
{
int overflow = Factorial<10>::value;
}
</code></pre>
http://stackoverflow.com/questions/1657673/trap-control-d-and-control-c/1657719#16577194Answer by wilhelmtell for "Trap" control-d and control-cwilhelmtell2009-11-01T17:25:31Z2009-11-01T17:36:26Z<p>In Unix use <code>signal()</code> in <code><signal.h></code> to register a function to invoke upon receiving a signal.</p>
<p>For example:</p>
<pre><code>#include <signal.h>
void leave(int sig);
// ...
{
signal(SIGINT,leave);
for(;;) getchar();
}
// Beware: calling library fn from signal handler isn't std-conforming
// and may not work.
void leave(int sig)
{
exit(sig);
}
</code></pre>
http://stackoverflow.com/questions/1655904/c-convert-pointer-string-to-integer/1655938#16559386Answer by wilhelmtell for c++ - convert pointer string to integerwilhelmtell2009-10-31T23:43:38Z2009-10-31T23:43:38Z<pre><code>#include <sstream>
// ...
string str(*(treePtr->item.getInvest())); // assuming getInvest() returns ptr
istringstream ss(str);
int the_number;
ss >> the_number;
</code></pre>
http://stackoverflow.com/questions/1655912/problem-passing-in-istream-argument-to-a-class-constructor/1655924#16559242Answer by wilhelmtell for problem passing in istream argument to a class constructor.wilhelmtell2009-10-31T23:33:35Z2009-10-31T23:33:35Z<p>You can't copy-construct a stream because the base-class ios has its copy ctor private. Try making the stream member a reference, rather than a standalone object.</p>
http://stackoverflow.com/questions/1558013/delete-null-but-no-compile-error/1558023#15580230Answer by wilhelmtell for Delete NULL but no compile errorwilhelmtell2009-10-13T03:07:54Z2009-10-13T03:07:54Z<p>NULL and 0 aren't the same thing. In C++ you should use 0.</p>
<p>There is nothing syntactically wrong or ambiguous about deleting the null pointer. In fact, this is by definition a no-op; that is, the operation of deleting the 0th address is equivalent to doing nothing at all.</p>
http://stackoverflow.com/questions/444951/zsh-stop-backward-kill-word-on-directory-delimiter0zsh: stop backward-kill-word on directory delimiterwilhelmtell2009-01-14T22:30:13Z2009-09-17T12:20:39Z
<p>In <a href="http://www.zsh.org/" rel="nofollow">zsh</a>, how can I set up the line editor such that backward-kill-word stops on a directory separator? Currently in my bash setup, if I type</p>
<pre><code>cd ~/devel/sandbox
</code></pre>
<p>and then hit C-w point will be right after "devel/". In my zsh setup, point would be after "cd ". I'd like to set up zsh so it behaves similarly to bash.</p>
http://stackoverflow.com/questions/1169405/c-input-from-text-file-help/1169576#11695760Answer by wilhelmtell for c++ Input from text file helpwilhelmtell2009-07-23T04:16:17Z2009-07-23T04:16:17Z<p>When you're done you have</p>
<p><code>[1,2,3,0,1,2,3,4,0,0,4,3,2,1,0,0]</code></p>
<p>How about using std::find()?</p>
http://stackoverflow.com/questions/1071674/dynamically-allocated-arrays-or-stdvector/1071719#10717190Answer by wilhelmtell for Dynamically allocated arrays or std::vectorwilhelmtell2009-07-01T22:49:18Z2009-07-01T22:49:18Z<p>The issue seems to be that you compiled your code with optimizations turned off. On my machine, OS X 10.5.7 with g++ 4.0.1 I actually see that the vector is faster than primitive arrays by a factor of 2.5.</p>
<p>With gcc try to pass <code>-O2</code> to the compiler and see if there's any improvement.</p>
http://stackoverflow.com/questions/947897/block-comments-in-a-shell-script/947991#9479910Answer by wilhelmtell for Block Comments in a Shell Scriptwilhelmtell2009-06-04T00:22:25Z2009-06-04T00:22:25Z<p>Find a good text editor. Newlines are usually the most effective comment-end tags, given an effective text editor.</p>
http://stackoverflow.com/questions/928613/is-this-the-correct-way-to-overload-the-left-stream-operator-c/928624#9286242Answer by wilhelmtell for Is this the correct way to overload the left-stream operator? (C++)wilhelmtell2009-05-30T00:12:52Z2009-05-30T00:12:52Z<p>is this inside a header? then you probably need to say <code>std::ostream</code>. Make sure you <code>#include<iosfwd></code>.</p>
<p>Also, you can probably say <code>const hand&</code>.</p>
http://stackoverflow.com/questions/913397/findif-function-build-problems/913483#9134830Answer by wilhelmtell for find_if function build problemswilhelmtell2009-05-27T00:49:08Z2009-05-27T00:55:39Z<pre><code>int *p = find_if(a, a+10, bind1st(mem_fun(&test::equals), this));
</code></pre>
<p>Or better yet, get rid of that <code>test::equals()</code> member function and then</p>
<pre><code>int *p = find_if(a, a+10, bind2nd(equals(), 9));
</code></pre>
<p>where equals is in fact <code>std::equals()</code>, a binary functor defined in header <code><functional></code>.</p>
http://stackoverflow.com/questions/865115/how-do-i-correctly-clean-up-a-python-object2How do I correctly clean up a Python object?wilhelmtell2009-05-14T19:04:12Z2009-05-14T20:20:04Z
<pre><code>class Package:
def __init__(self):
self.files = []
# ...
def __del__(self):
for file in self.files:
os.unlink(file)
</code></pre>
<p><code>__del__(self)</code> above fails with an AttributeError exception. I understand <a href="http://docs.python.org/reference/datamodel.html#customization" rel="nofollow">Python doesn't guarantee</a> the existence of "global variables" (member data in this context?) when <code>__del__()</code> is invoked. If that is the case and this is the reason for the exception, how do I make sure the object destructs properly?</p>
http://stackoverflow.com/questions/843389/the-pimpl-idiom-in-practice/843450#8434502Answer by wilhelmtell for The Pimpl Idiom in practicewilhelmtell2009-05-09T14:54:08Z2009-05-09T14:54:08Z<h2>Code Clarity</h2>
<p>Code clarity is very subjective, but in my opinion a header that has a single data-member is much more readable than a header with many data-members. The implementation file however is noisier, so clarity is reduced there. That might not be an issue if the class is a base class, mostly used by derived classes rather than maintained.</p>
<h2>Maintainability</h2>
<p>For maintainability of the pimpl'd class I personally find the extra dereference in each access of a data-member tedious. Accessors can't help if the data is purely private because then you shouldn't expose an accessor or mutator for it anyway, and you're stuck with constantly dereferencing the pimpl.</p>
<p>For maintainability of derived classes I find the idiom is a pure win in all cases, because the header file lists fewer irrelevant details. Compile time is also improved for all client compilation units.</p>
<h2>Performance</h2>
<p>Performance loss is small in many cases and significant in few. In the long-run it is in the order of magnitude of virtual functions' performance loss. We're talking about an extra dereference per access per data-member, plus dynamic memory allocation for the pimpl, plus release of the memory on destruction. If the pimpl'd class doesn't access its data-members often, the pimpl'd class' objects are created often and are short-lived then dynamic allocation can out-weigh the extra-dereferences.</p>
<h2>Decision</h2>
<p>I think classes in which performance is crucial, such that one extra dereference or memory allocation makes a significant difference, shouldn't use the pimpl no matter what. Base classe in which this reduction in performance is insignificant and of which the header file is widely #include'd probably should use the pimpl if compilation time is improved significantly. If compilation time isn't reduced it's down to your code-clarity taste.</p>
<p>For all other cases it's purely a matter of taste. Try it and measure runtime performance and compile-time performance before you make a decision.</p>
http://stackoverflow.com/questions/791856/which-windows-gui-system-should-i-choose-with-c/792499#7924990Answer by wilhelmtell for Which Windows GUI system should I choose with C++?wilhelmtell2009-04-27T07:21:05Z2009-04-27T07:21:05Z<p>I personally prefer gtkmm. Although it doesn't look as good as Qt or the native frameworks on Windows, I think the API is the most transparent among all frameworks I tried. It feels very OOish, and is very easy to learn. You can easily create GUI layouts with Glade, but you can also create decent designs with nothing but code. In this regard, gtkmm is similar to Java GUI programming.</p>
http://stackoverflow.com/questions/775325/function-for-manipulating-container-of-base-derived-objects/775508#7755080Answer by wilhelmtell for Function for manipulating container of Base/Derived objectswilhelmtell2009-04-22T02:24:52Z2009-04-22T18:34:09Z<p>If I'd know what's the real code behind those foobars then maybe I'd know better, but isn't there already a solution for your problem in the STL?</p>
<pre><code>for_each(s.begin(), s.end(), DoStuffOnI());
</code></pre>
<p>Just put your "do stuff on *i" code in a function or a functor:</p>
<pre><code>struct DoStuffOnI : public std::unary_function<MyType&,void> {
void operator()(MyType& obj) {
// do stuff on *i
}
};
</code></pre>
<p>If you're bothered about sending away two parameters instead of one, then ok, maybe you can do something like:</p>
<pre><code>template<typename In>
struct input_sequence_range : public std::pair<In,In> {
input_sequence_range(In first, In last) : std::pair<In,In>(first, last)
{
}
};
template<typename C>
input_sequence_range<typename C::iterator> iseq(C& c)
{
return input_sequence_range<typename C::iterator>(c.begin(), c.end());
}
template<typename In, typename Pred>
void for_each(input_sequence_range<In> r, Pred p) {
std::for_each(r.first, r.second, p);
}
</code></pre>
<p>Then call for_each like so:</p>
<pre><code>for_each(iseq(s), DoStuffOnI());
</code></pre>
http://stackoverflow.com/questions/744766/how-to-compare-ends-of-strings-in-c/746017#7460171Answer by wilhelmtell for How to compare ends of strings in C?wilhelmtell2009-04-14T01:37:01Z2009-04-14T19:06:46Z<p>If you can change the signature of your function, then try changing it to</p>
<pre><code>int EndsWith(char const * str, char const * suffix, int lenstr, int lensuf);
</code></pre>
<p>This will result in a safer, more reusable and more efficient code:</p>
<ol>
<li>The added const qualifiers will make sure you don't mistakenly alter the input strings. This function is a predicate, so I assume it is never meant to have side-effects.</li>
<li>The suffix to compare against is passed in as a parameter, so you can save this function for later reuse with other suffixes.</li>
<li>This signature will give you the opportunity to pass the lengths of the strings in if you already know them. We call this <a href="http://en.wikipedia.org/wiki/Dynamic%5Fprogramming" rel="nofollow">dynamic programming</a>.</li>
</ol>
<p>We can define the function like so:</p>
<pre><code>int EndsWith(char const * str, char const * suffix, int lenstr, int lensuf)
{
if( ! str && ! suffix ) return 1;
if( ! str || ! suffix ) return 0;
if( lenstr < 0 ) lenstr = strlen(str);
if( lensuf < 0 ) lensuf = strlen(suffix);
return strcmp(str + lenstr - lensuf, suffix) == 0;
}
</code></pre>
<p>The obvious counter-argument for the extra parameters is that they imply more noise in the code, or a less expressive code.</p>
http://stackoverflow.com/questions/727994/git-skipping-specific-commits-when-merging/728050#7280500Answer by wilhelmtell for git - skipping specific commits when mergingwilhelmtell2009-04-08T00:02:55Z2009-04-08T00:02:55Z<p>Create a third branch for the changes you want in master10 but not in master20. Always consider master10 as your "master", the most stable branch of all. The branch all other branches want to keep in sync with at all times.</p>
http://stackoverflow.com/questions/718395/is-it-okay-to-use-foreach-to-modify-elements-of-a-container-in-c/718408#7184081Answer by wilhelmtell for Is it okay to use for_each to modify elements of a container in c++?wilhelmtell2009-04-05T05:40:56Z2009-04-05T05:40:56Z<p>This question is a <a href="http://stackoverflow.com/questions/662845/why-is-stdforeach-a-non-modifying-sequence-operation">duplicate</a>.</p>
http://stackoverflow.com/questions/703503/which-stl-container-is-best-for-stdsort-does-it-even-matter/703524#7035243Answer by wilhelmtell for Which STL container is best for std::sort? (Does it even matter?)wilhelmtell2009-03-31T23:57:15Z2009-04-01T00:48:44Z<p><code>std::list</code> is definitely not a good (valid) choice for <code>std::sort()</code>, because <code>std::sort()</code> requires random-access iterators. <code>std::map</code> and friends are also no good because an element's position cannot be enforced; that is, the position of an element in a map cannot be enforced by the user with insertion into a particular position or a swap. Among the standard containers we're down to <code>std::vector</code> and <code>std::deque</code>.</p>
<p><code>std::sort()</code> is like other standard algorithms in that it only acts by swapping elements' values around (<code>*t = *s</code>). So even if list would magically support O(1) access the links wouldn't be reorganized but rather their values would be swapped.</p>
<p>Because <code>std::sort()</code> doesn't change the container's size it should make no difference in runtime performance whether you use <code>std::vector</code> or <code>std::deque</code>. Primitive arrays should be also fast to sort, probably even faster than the standard containers -- but I don't expect the difference in speed to be significant enough to justify using them.</p>
http://stackoverflow.com/questions/1858500/small-question-concerning-redefining-member-functionsComment by wilhelmtell on Small question concerning redefining member functionswilhelmtell2009-12-07T08:01:37Z2009-12-07T08:01:37ZYou have non-virtual getters and setters for Account::balance. Account::balance should be private.http://stackoverflow.com/questions/1801459/algorithm-how-to-delete-duplicate-elements-in-a-list-efficiently/1801471#1801471Comment by wilhelmtell on Algorithm - How to delete duplicate elements in a list efficiently?wilhelmtell2009-11-30T22:53:39Z2009-11-30T22:53:39Z@David Crawshaw: searching a set is not O(1). Unless of course you design your own set such that all elements are known ahead of time; in this case you can use a perfect hash-function. In C++, by the way, searching a set is guaranteed to be O(log n).http://stackoverflow.com/questions/1773311/vim-lock-top-line-of-a-window/1773361#1773361Comment by wilhelmtell on Vim: Lock top line of a windowwilhelmtell2009-11-20T21:59:53Z2009-11-20T21:59:53Zsorry, i should read the question properly.http://stackoverflow.com/questions/1760726/compose-output-streams/1760773#1760773Comment by wilhelmtell on Compose output streamswilhelmtell2009-11-19T03:48:47Z2009-11-19T03:48:47ZOr did I completely misunderstand the question?http://stackoverflow.com/questions/1758449/someone-please-help-me-write-this-program-on-codeblocksComment by wilhelmtell on Someone please help me write this program on codeblocks?wilhelmtell2009-11-18T19:44:50Z2009-11-18T19:44:50Z@Adolph, we want to help you but you need to show us you're here to learn. The question, as posed, makes us feel you're asking us to do the homework for you. Ask specific questions: where are you having a difficulty? Is there any concept in the question you don't understand? If you have anything done already, show us where you're standing.http://stackoverflow.com/questions/1739853/c-problems-and-solutions/1739874#1739874Comment by wilhelmtell on C Problems and Solutionswilhelmtell2009-11-17T13:51:54Z2009-11-17T13:51:54ZNo, my point is to just start on something. I happen to be interested in compilers, parsers, interpreters and such. OS, games, text-editors -- they can all be big and daunting. The trick is to start. Make it as small as you can, even an incomplete subcomponent of a large porject. If you're dealing with what fascinates you then you'll do fine, and you'll even enjoy yourself.http://stackoverflow.com/questions/1745614/insert-a-hyphen-into-a-string-c/1745642#1745642Comment by wilhelmtell on insert a hyphen into a string C++wilhelmtell2009-11-16T23:49:44Z2009-11-16T23:49:44ZNo. You're concatenating.http://stackoverflow.com/questions/1745614/insert-a-hyphen-into-a-string-cComment by wilhelmtell on insert a hyphen into a string C++wilhelmtell2009-11-16T23:45:06Z2009-11-16T23:45:06ZIs this a homework question? Where do you want to have the hyphen? Give an example of an input phone-number and its corresponding output phone-number.http://stackoverflow.com/questions/1736458/help-un-noobify-my-c-homeworkComment by wilhelmtell on Help un-noobify my C++ homework.wilhelmtell2009-11-15T03:44:31Z2009-11-15T03:44:31ZDon't go to Las Vegas with this algorithm. It's faster and less risky to make money by just going to work. Shifting or not. :phttp://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags/1732454#1732454Comment by wilhelmtell on RegEx match open tags except XHTML self-contained tagswilhelmtell2009-11-14T19:48:21Z2009-11-14T19:48:21Zoniguruma have named groups. then again, c has loops and conditionals and other neat things, so might as well use that.http://stackoverflow.com/questions/1712562/isnt-there-a-point-where-encapsulation-gets-ridiculous/1712597#1712597Comment by wilhelmtell on Isn't there a point where encapsulation gets ridiculous?wilhelmtell2009-11-11T02:29:51Z2009-11-11T02:29:51ZSometimes this is a significant factor in making a decision about a class design. Just be conscious about it. Sometimes it's just wrong, and this Roman way of doing things is the reason why things are getting out of hands. Then you simplify things and explain yourself. Someone might hit you with a bat and you'll have to correct yourself, but I think this whole process was still healthy for the system.http://stackoverflow.com/questions/1704411/how-to-convert-string-to-int-in-cComment by wilhelmtell on How to convert String to int in Cwilhelmtell2009-11-09T22:36:23Z2009-11-09T22:36:23ZDid you even /try/ to search for this on stackoverflow?http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701128#1701128Comment by wilhelmtell on STL: How to check that an element is in a std::set ?wilhelmtell2009-11-09T14:13:29Z2009-11-09T14:13:29Z@paul don't create static global functions. put your function in an anonymous namespace instead: that's the C++ way of creating functions that won't link into other compilation units. also, your T parameter should be a const reference, for const-correctness and for efficiency.http://stackoverflow.com/questions/1701067/stl-how-to-check-that-an-element-is-in-a-stdset/1701083#1701083Comment by wilhelmtell on STL: How to check that an element is in a std::set ?wilhelmtell2009-11-09T13:53:33Z2009-11-09T13:53:33Zthis is specific for sets and maps. vectors, lists etc. don't have a find member function.http://stackoverflow.com/questions/1658386/sleep-function-in-c/1658400#1658400Comment by wilhelmtell on Sleep function in C++wilhelmtell2009-11-01T21:34:01Z2009-11-01T21:34:01Z... and the (supposed) reason there is no portable way to do it in the standard is because the a clock's precision (smallest unit of time) is hardware-dependent or OS-dependent. No, I don't find it a convincing reason either, but there we are.