/windows核心编程实例17-AppInst/
/展示:应用程序如何知道在任一时刻有多少个自己的实例正在运行/
include <windows.h>
include "resource.h"
int g_uMsgAppInstCountUpdate = WM_APP + 123;
pragma data_seg("Shared")
volatile LONG g_lApplicationInst...
/插入排序/
include <iostream>
using namespace std;
template <class T>
void SWAP(T &x, T &y)
{
T t;
t = x;
x = y;
y = t;
}
template <class T>
void Insert(T a[], int n, const T x)
{
int i;
for (i = n-1; i >= 0 && x < a[i]; ...
原文:
The Road Not Taken by Robert Frost (弗罗斯特)
writen by Robert Lee Frostsai.
Two roads diverged in a yellow wood,
And sorry I could not travel both
And be one traveler, long I stood
And looked down one as far as I could
To where it...