QueryPerformanceCounter
摘要:#include #include using namespace std; // test 测试 wstring strPath; strPath = _T("e:\\time.log"); wfstream log; log.open(strPath.c_s...
阅读全文
写日志
摘要:#include <fstream>#include <sstream>using namespace std; // test 测试 wstring strPath; strPath = _T("e:\\time.log"); wfstream log; log.open(strPath.c_str(),ios::out|ios::app); wstringstream ss; ss << _T("RCWinMain begin:")<<::GetTickCount()<<endl; log.
阅读全文
恭敬观世音菩萨( 远离色欲)
摘要:【原文】色欲一事,乃举世人之通病。不特中下之人,被色所迷。即上根之人,若不战兢自持,乾惕在念,则亦难免不被所迷。试观古今来多少出格豪杰,固足为圣为贤。只由打不破此关,反为下愚不肖,兼复永堕恶道者,盖难胜数。《楞严经》云:“若诸世界六道众生,其心不淫,则不随其生死相续。汝修三昧,本出尘劳。淫心不除,尘...
阅读全文
汉诺塔递归算法与非递归算法
摘要:#include "stdafx.h"#include using namespace std;int g_steps = 0;void Move(int n, char ch1, char ch2){ cout"简化(考虑:以下当做2个盘子很容易写出代码) if (n>0) ...
阅读全文