
C/C++
文章平均质量分 73
bugcoder321
终身成长者。
展开
-
VS 2010 常用快捷键
代码自动排版:Ctrl + Ctrl -;(注意,需要首先选中代码,先按Ctrl键和+键,再按Ctrl键和-键。)原创 2011-07-26 11:23:44 · 750 阅读 · 0 评论 -
C语言实现getline()
/*getline : get line into s, return length */ int getline(char s[], int lim){ int c, i ; i = 0; while ( --lim > 0 &&原创 2011-09-28 09:23:43 · 7210 阅读 · 0 评论 -
C语言实现atoi,itoa和atof
首先是atoi的实现,它的功能是将字符串转化为整数。 #include #include /* atoi : convert s to integer; version 2*/int atoi(char s[]){ int i, n, sign; fo原创 2011-09-25 21:12:37 · 4352 阅读 · 0 评论 -
C语言实现字符串替换
/*2011年7月21日19:58:20语法:replace(char str[], char key[] char swap[]);*/#include #include /** * 参数: * originalString[] :原始字符串原创 2011-07-27 20:52:07 · 9876 阅读 · 1 评论 -
C语言利用栈实现Polish计算器
/************************************************************************//* 利用栈实现反向Polish计算器:比如,输入1 2 +,其实是要计算1 + 2;/* 比如输入1 2 + 4 5 -原创 2011-09-28 11:11:03 · 2714 阅读 · 0 评论 -
C语言实现读取输入中最前面的整数
例如,输入123abc,程序读取123;#include #include #include /*getint : get next integer from input into *pn*/int getint(int *pn){ int c, si原创 2011-09-28 22:26:31 · 1785 阅读 · 0 评论 -
C语言实现快速排序
#include /*交换数组中的2个元素*/void swap(int v[], int i, int j){ int temp ; temp = v[i]; v[i] = v[j]; v[j] = temp;}/************原创 2011-09-29 10:52:43 · 819 阅读 · 0 评论 -
C语言实现日期和一年中的天数的相互转化
#include static char daytab[2][13]= { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 3原创 2011-09-29 15:35:58 · 9702 阅读 · 1 评论 -
C++利用指针数组和快排对输入的字符串进行排序
#include #include #define MAXLINES 5000 /*最多可以输入5000行*/#define MAXLEN 1000 /*max length of any input line*/#define ALLOCSIZE 10000原创 2011-09-29 15:02:46 · 3719 阅读 · 0 评论 -
C语言实现getch()和ungetch()
char buf[BUFSIZ];// buffer for ungetch int bufp = 0; // next free position in buf int getch(void){ return (bufp > 0)原创 2011-09-29 17:36:54 · 3062 阅读 · 0 评论 -
C语言用二叉树实现对输入各个单词的个数进行计数
#include #include #include #define MAXWORD 100struct tnode { /*the tree node*/ char *word;/* points to the text */ int coun原创 2011-09-30 10:17:41 · 1168 阅读 · 0 评论 -
C语言实现哈希链表查找
#include #define HASHSIZE 101struct nlist { /*table entry*/ struct nlist *next; /*next entry in chain */ char *name; /* define原创 2011-09-30 10:47:44 · 4991 阅读 · 0 评论 -
C语言中不能使用引用传参
如果需要使用引用传参,必须在cpp中使用,在c语言中使用时编译通不过。原创 2011-10-27 10:30:15 · 3613 阅读 · 2 评论 -
C语言找到所有输入行中包含特定字符串的行
#include #define MAXLINE 1000 /*maximum input line length*/int getline(char line[], int max);int strindex(char source[], char search原创 2011-09-27 19:54:33 · 1900 阅读 · 0 评论 -
C语言malloc用法
#include #include #include main(){ int count, *array; if((array = (int*) malloc(10*sizeof(int))) == NULL){ printf("不能成功分配存储空间")原创 2011-09-25 17:37:15 · 1634 阅读 · 0 评论 -
C语言实现字符串反转程序
void Reverse(char s[]){ for(int i = 0, j = strlen(s) - 1; i < j; ++i, --j) { char c = s[i]; s[i] = s[j]; s原创 2011-09-20 17:02:41 · 2101 阅读 · 0 评论 -
C++/VC 获取本机IP地址
问题很明确,直接贴代码了。#include"iostream"#include"winsock2.h"#pragma comment(lib,"ws2_32.lib")using namespace std;char* fetchIPAddress( ){ char原创 2011-07-27 09:32:02 · 8984 阅读 · 0 评论 -
MFC中如何修改CListControl的列名
LVCOLUMN m_vcolumn;CString strText = "name";m_vcolumn.mask = LVCF_TEXT;m_vcolumn.pszText =strText.GetBuffer(0);m_vcolumn.cchTextMax = strTex原创 2011-07-27 19:41:23 · 4071 阅读 · 1 评论 -
如何重载MFC对话框的OnInitDialog()函数
a原创 2011-07-27 20:07:32 · 6074 阅读 · 2 评论 -
MFC中,将IP地址转化为整数
在MFC中,有时需要将一个字符串类型的IP地址转化为整数,例如,将CString strIP = "192.168.3.5";strIP转化为整数,转化规则很简单,即192*256*256*256 + 168*256*256 + 3*256 + 5; 用代码可以如下实现。CStr原创 2011-07-28 09:42:00 · 2547 阅读 · 1 评论 -
在VC中调用fortran生成的dll
1. 编译fortran函数为DLL,($ATTRIBUTES DLLEXPORT :: funname)标注为导出函数。2. 在vc中用LoadLibraryEx得到该模块的句柄,用GetProcAddress定位该函数的指针函数名称为_funname@number原创 2011-09-14 09:53:01 · 1353 阅读 · 0 评论 -
C例程:文件读写 拷贝 标准输入输出等
#include /*cat : concatenate files, version 1*/main(int argc, char *argv[]){ FILE *fp; void filecopy(FILE *, FILE *); if(arg原创 2011-09-14 11:05:58 · 955 阅读 · 0 评论 -
Windows 下 C语言的头文件后缀H和h是没有区别的
如题。原创 2011-09-15 09:43:43 · 2684 阅读 · 0 评论 -
C语言实现对输入中的行数,单词个数,字符的个数进行计数
/** 时间:2011年6月5日8:38:52* 作者:李灿辉* 程序功能:对输入中的行数,单词个数,字符的个数进行计数*/#include #define IN 1 /**inside a word*/#define OUT 0 /*outs原创 2011-09-24 09:01:29 · 5260 阅读 · 2 评论 -
C语言实现拷贝输入的最长的行
#include #define MAXLINE 1000 /*maximum input line size*/int getline(char line[], int maxline);void copy(char to[], char from[]);原创 2011-09-24 16:04:59 · 2950 阅读 · 0 评论 -
C语言sizeof 和 strlen 的区别
#include using namespace std;class X { int i; int j; char c;};int main(){ char *ss = "0123456789"; cout << sizeof(原创 2011-09-24 21:00:01 · 766 阅读 · 0 评论 -
修改MFC中菜单显示的文字
当需要在程序中动态修改菜单中显示的文字时,比如有的程序界面提供中英文显示切换的功能,可以通过以下方式进行。CMenu *cMenu = new CMenu();cMenu->LoadMenuA(IDR_MENU1);//加载菜单,IDR_MENU1是整个菜单资源的ID原创 2011-07-27 20:18:05 · 19967 阅读 · 12 评论 -
C语言实现二分查找
#include /*binsearch : find x in v[0] <= v[1] <= ... <= v[n-1] */int binsearch(int x, int v[], int n){ int low, high, mid; low =原创 2011-09-25 20:59:03 · 15015 阅读 · 2 评论 -
C语言中将函数指针作为参数的语法知识
在C/C++语言中,可以将一个函数指针作为一个函数的参数。函数指针作为参数的语法如下所示:int compare(int a, int b){ return (a > b) ? a : b;}void function(int x, int y, int (*compare)(int, int)){ //... (*compare)(3, 4); //...}int m原创 2011-11-03 17:10:22 · 1741 阅读 · 0 评论