• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






chunyou128

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 33 下一页

2012年9月12日

My friends
该文被密码保护。 阅读全文
posted @ 2012-09-12 11:32 无名使者 阅读(2) 评论(0) 推荐(0)
 

2012年9月9日

汉诺塔递归算法与非递归算法
摘要: #include "stdafx.h"#include using namespace std;int g_steps = 0;void Move(int n, char ch1, char ch2){ cout"简化(考虑:以下当做2个盘子很容易写出代码) if (n>0) ... 阅读全文
posted @ 2012-09-09 09:46 无名使者 阅读(301) 评论(0) 推荐(0)
 

2012年8月30日

字符串整数互转
摘要: #include "stdafx.h"#include <stdio.h>int A2i(char *p){ int i = 0; int sum = 0; while (p[i]) { sum = sum*10+(p[i]-'0'); ++i; } return sum;}char *Itoa( int value, char *str, int radix ){ char temp[20]={0}; int i = 0; ... 阅读全文
posted @ 2012-08-30 22:38 无名使者 阅读(151) 评论(0) 推荐(0)
 
工程中集成exe
该文被密码保护。 阅读全文
posted @ 2012-08-30 09:01 无名使者 阅读(1) 评论(0) 推荐(0)
 

2012年8月24日

void型指针转换。
摘要: struct tagStudent { int id; wchar_t name[20] ; }; tagStudent student = {0}; student.id = 2; wcsncpy(student.name,_T("yuanyc"),20); void *pVoid = new tagStudent(); CopyMemory(pVoid,&student,sizeof(student)); tagStudent *pStu = (tagStudent*)(pVoid); int nID... 阅读全文
posted @ 2012-08-24 14:57 无名使者 阅读(203) 评论(0) 推荐(0)
 
转正
该文被密码保护。 阅读全文
posted @ 2012-08-24 14:56 无名使者 阅读(1) 评论(0) 推荐(0)
 
SetProp
摘要: http://www.vckbase.com/index.php/wv/473 CString g_szPropName = "Your Prop Name";HANDLE g_hValue = (HANDLE)1;//设置窗口属性SetProp(m_hWnd,g_szPropName,g_h... 阅读全文
posted @ 2012-08-24 00:24 无名使者 阅读(504) 评论(0) 推荐(0)
 

2012年8月23日

.感激欺骗你的人 因为他增进了你的智慧
摘要: .感激欺骗你的人 因为他增进了你的智慧.感激中伤你的人 因为他砥砺了你的人格.感激鞭打你的人 因为他激发了你的斗志.感激遗弃你的人 因为他教导了你该独立.感激绊倒你的人 因为他强化了你的双腿.感激斥责你的人 因为他提醒了你的缺点感激斥责你的人,因为他触动了你的愚钝; 阅读全文
posted @ 2012-08-23 21:17 无名使者 阅读(261) 评论(0) 推荐(0)
 

2012年8月15日

mutex的使用
该文被密码保护。 阅读全文
posted @ 2012-08-15 09:07 无名使者 阅读(0) 评论(0) 推荐(0)
 

2012年8月14日

NSIS脚本的语法
该文被密码保护。 阅读全文
posted @ 2012-08-14 20:34 无名使者 阅读(0) 评论(0) 推荐(0)
 
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 33 下一页