摘要:The document complies to its character set definition. The charset is usually defined in the xml declaration but it can be provided by the transport protocol, such as HTTP. If no charset is defined, u...
阅读全文
摘要:Given the availability of consts and inlines, your need for the preprocessor is reduced, but it's not completely eliminated. The day is far from near when you can abandon #include, and #ifdef/#ifndef ...
阅读全文
摘要:unicode: universal character set and code pointUTF8, UTF16,UTF32,GB18030 unicode code point encodingGB2312, code pages, character set and code point with the encoding
阅读全文
摘要:http://www.microsoft.com/globaldev/reference/dbcs/936.mspx
阅读全文
摘要:there is a common problem while installing vs2005 sp1, if you have that, try to see the instruction below: (also you can see the release notes for lots of known issues) Installation Issues – Windows S...
阅读全文
摘要:windowblindshttp://www.stardock.com/products/windowblinds/wb5/
阅读全文
摘要:Blazing trails can be exciting, but when your goal is producing reliable code, it's often best to let others do thebushwhacking for you.
阅读全文
摘要:#include "stdafx.h" #include #include using namespace std; double quicklog(__in double base, __in double value); int _tmain(int argc, _TCHAR* argv[]) { double n = 100000000; cout...
阅读全文
摘要:In a recursion tree, each node represents teh cost of a single subproblem somewhere in the set of recursive function invocations. We sum the costs within each level of the tree to obtain a set of per-...
阅读全文
摘要:在两维世界里面很难想象三维世界里面的样子以前很难理解这句话最近看到一个问题:对任何两个实数,总是存在如下的比较结果:ab但是对于近似函数(asymptotic function),这可不一定比如f(n)=n and n2sin(n)为什么会这样呢?原来是当对函数进行渐近比较的时候,被比较对象的函数多了一个变化因子n,这在比较常数的时候是没有的。可以认为常数的变化因子是0,函数的变化因子是1。...
阅读全文
摘要:// RecursiveInsertionSort.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include using namespace std; void PrintArray(int a[], int iStart, int iEnd); void Inse...
阅读全文
摘要:#include #include using namespace std; class Utility { public: int static Left(int n) { return 8*n*n; } int static Right(int n) { return (int)64*n*log((double...
阅读全文