13
votes
0
votes
typedef a std::string - Best practice
I would create a class that has a std::string as a private member. You would then need to reimplement the methods that you want to use, but if you switch the string type in the future all you woul …
17
votes
Why are there digraphs in C and C++?
Digraphs were created for programmers that didn't have a keyboard which supported the ISO 646 character set.
http://en.wikip …
9
votes
Performance of creating a C++ std::string from an input iterator.
I benchmarked your implementation(1), mine(2), and two others(3 and 4) that I found on stackoverflow.
Results (Average of 100 runs; timed using gettimeofday, file was 40 paragraphs of lorem …
1
vote
Online compilers/runtime for Java, C++, Python and ObjC?
This works for java: http://www.zamples.com/JspExplorer/index.jsp
…
14
votes
Checking if a double (or float) is nan in C++
There is an std::isnan if you compiler supports c99 extensions, but I'm not sure if mingw does.
Here is a small function which should work if your compiler doesn't have the standard functio …
8
votes
container for quick name lookup
I would suggest tr1::unordered_map. It is implemented as a hashmap so it has an expected complexity of O(1) for lookups and a worst case of O(n). There is also a boost implementation if your comp …
6
votes
How do I skip reading a line in a file in C++?
Is this more like what you want?
#include <iostream>
#include <sstream>
#include <fstream>
#include <string>
#include <algorithm>
using namespace std; …
1
vote
How do I return hundreds of values from a C++ function?
One other option is boost::tuple: http://www.boost.org/doc/libs/1_38_0/libs/tuple/doc/tuple_users …
12
votes
C++ obtaining milliseconds time on linux — clock() doesn’t seem to work properly
#include <sys/time.h>
#include <stdio.h>
#include <unistd.h>
int main()
{
struct timeval start, end;
long mtime, seconds, useconds;
gettimeofday(&sta …
0
votes
How to create multiple objects in the same function but without overwriting each other?
I would suggest a vector:
#include <vector>
using namespace std;
void foo()
{
vector<int> v;
v.push_back(1);
v.push_back(2);
v.push_back(3);
cout < …
7
votes
Changing c++ output without changing the main() function
Not as elegant as litb's, but an alternative:
#include <iostream>
using namespace std;
int foo()
{
cout << "I Love You" << endl;
return cout.rdbuf(0);
}
i …
9
votes
How to make Linux C++ GUI apps
I personally prefer QT as I prefer working with the signal/slots mechanism and just find it easy to develop applications quickly with it. Some of your other options would be wxWidgets and GTK+. …
4
votes
C++ how to copy a map to a vector
This should do what you want:
#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
bool cmp(const pair<int, in …
0
votes
Template Meta-programming with Char Arrays as Parameters.
You can't do that. From 14.3.2 in the standard:
A template-argument for a non-type, non-template template-parameter shall be one of:
an integral constant-expression of integr …
