转自:……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2257浏览 665个赞
C++ sprintf函数详解 函数功能: 把格式化的数据写入某个字符串头文件: stdio.h函数原型: int sprintf( char *buffer, const char……继续阅读 » 水墨上仙 4年前 (2021-03-24) 3096浏览 1443个赞
const:常量限定修饰符,它把一个对象转换为常量(constant)。const对象必须初始化而且是在定义的同时。初始化后的const对象(或指针)是不能修改的。 例1:int i = 0; const int j = 0; // int const j = 0; ……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1440浏览 1693个赞
VC获取本机网卡地址 如何获取网卡地址(MAC地址):VC++编写的代码,适用于windows环境,API实现/*char *pMACAdr,返回网卡地址的buff, int *nBuffLen前一个参数的长度, int nAdapterID = 0网卡号,针对多网卡问题,有……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2927浏览 1830个赞
一个简单的C++随机产生彩票号码的代码#include <stdio.h>#include <stdlib.h>#include <time.h>#include <stdbool.h>using namespace std;bool checkequal(int *a,int b);void……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1822浏览 675个赞
C++顺序存储的线性表来源:http://blog.csdn.net/creazyapple/article/details/7931830/* * 顺序存储的线性表 */#include <stdio.h>#define OK 1#define ERR 0#define LIST_INIT_SIZE 100#define L……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2545浏览 1738个赞
派生类不能直接访问基类的私有成员,若要访问必须使用基类的接口,即通过其成员函数。实现方法有如下两种:1.在基类的声明中增加保护成员,将基类中提供给派生类访问的私有成员定义为保护成员。2.将需要访问基类私有成员的派生类成员函数声明为友元。#include<iostream>using namespace std;class Base{……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1878浏览 1034个赞
日期字符转化成时间戳 时间戳转化成日期 /* @param date @param formart of date @return time_t @auth……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1370浏览 1882个赞
一个简单的C++编写的u盘病毒代码一个win32下能用的U盘病毒 研究原理可以 别编译拿去害人就行 (ring3的病毒貌似也害不了人) 前久用IDA逆向出来的 感兴趣的可以看看。。。#include<windows.h>#include<string.h> BOOL UDevice();void Reso……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2719浏览 1410个赞
前缀输入,中缀输出,若带字母,则为字母赋值,最后计算表达式的值。#include<stdio.h>#include<stdlib.h>#include<malloc.h>#include<string.h>typedef enum{ INT, CHAR} DataType;//CHAR=1……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1864浏览 1133个赞
C++多线程复制文件使用文件读写复制问文件的线程函数:DWORD WINAPI CopyThread(LPVOID lpParam){ CCopyFileDlg *dlg=(CCopyFileDlg*)lpParam; CFile file1(dlg->m_Src,CFile::modeRead); CFile file2(dlg-&g……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2184浏览 334个赞
C++栈的链式存储演示代码#include<iostream>using namespace std;struct Data{ Data *next; int data;};class Link_Stack{private: Data *base; Data *top; int top1;public: Link……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1720浏览 2250个赞
C++解决大数据的加法、减法、乘法以及阶乘的计算问题来源:http://blog.csdn.net/complety/article/details/8276813  限于数据类型的长度有限,对于大数据的计算就无能为力了,这里主要是采用字符数组解决精度问题。……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1414浏览 346个赞
OCILIB是一个跨平台的Oracle驱动程序,可提供非常快速和可靠地访问Oracle数据库。它提供了一个丰富,功能齐全,并易于使用的API 。OCILIB 支持运行的所有Oracle平台。#include "ocilib.h" int main(int argc, char *argv[]){ OCI_Connect……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1501浏览 1415个赞
C++在linux中的ctrl+c信号处理,判断用户是否按下了ctrl+cint main(int argc, char *argv[]){ signal(SIGINT, sig_int);//注册信号 捕获SIGINT(中断)信号,然后调用sig_int函数 (Ctrl-C会产生这个信号) return 0;}/*SIGINT信号截取函数*……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1778浏览 1749个赞
C++仿linux ls命令的实现代码#include <stdio.h>#include <stdlib.h>#include <dirent.h>#include <sys/stat.h>#include <string.h>#include <errno.h>#i……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2026浏览 1919个赞
linux平台下mongodb c++连接池封装,线程安全//函数返回0:成功 >0 出错class cmongo{ public: //默认构造函数,默认连接数为1 cmongo(); //传入连接数到构造函数,默认连接数为size cmongo(int size); //析构函数 ~cmongo(); publi……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2492浏览 444个赞
linux C++连接数据库postgreSql,在centos6.3,eclipse下调试成功,其中需要设置一下eclipse的参数#include <stdio.h>#include <stdlib.h>#include <libpq-fe.h>int main(int argc, char * argv……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2195浏览 1373个赞
C++在windows下获取本地主机ipv4地址和ipv6地址#include <Winsock2.h>#include <stdio.h>#include <iostream>#include <cstring>#include<ws2tcpip.h>#pragma comment……继续阅读 » 水墨上仙 4年前 (2021-03-24) 3015浏览 1274个赞
求任意权值最短路径的Bellman-Ford算法C++实现Bellman-Ford算法可以用来解决所要求的最短路径的图中含有负数边的情形。算法的基本思想:如果两个结点间存在最短路径,那么这条路径中各个结点最多经过一次(因为如果超过一次,说明路径中有环,如果是正数环,会使路径权值增长;若为负数环,最短路径不存在;若为零环,不影响结果)。因此我们只需迭代n-1次……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1327浏览 2437个赞
C++在linux下设置和获取事件的代码 时间函数 time_t time(time_t *t); char *asctime(const struct tm *tm); char *asctime_r(const struct tm *tm……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1261浏览 1988个赞
求最大网络流的C++实现(利用广度优先遍历的思想)基本思想:利用广度优先遍历的思路,从一个可行流(一般取零流)开始,不断进行标号过程和调整过程,直到找不到起点到终点的可增广路径为止。1、标号过程在这个工程中,网络上的点分为已标号点和未标号点。将起始点标号,其他刚开始未标号。从起始点开始,利用广度优先算法进行遍历,找到一个未标号点时,看临接的标号点与之是正向边……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2895浏览 2478个赞
Base64编码在邮件中最为常见,呵呵,因为我最近就是在做邮箱报警,SMTP验证就是Base64编码用户名和密码进行验证的,并且图片为附件也是要转换成base64编码的数据,然后再发送的。该编码使用64个明文来编码任意的二进制文件,它里面只使用了A-Z,a-z,0-9,+,/这64个字符。编码里面还有“=”号啊,不过等号不属于编码字符,而是填充字符。 ……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2701浏览 2348个赞
C++清空或删除文件夹//清空log文件夹void CPMAgentManageDlg::DeleteFolder(CString sPath){ CFileFind ff; BOOL bFound; bFound = ff.FindFile(sPath + "\\*.*"); while(bFound) { bF……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2645浏览 2817个赞
简单Tcp编程范例,一个C++实现的简单的C/S程序//InitSock.h#pragma once#include <WinSock2.h>#pragma comment(lib,"WS2_32")class CInitSock{public: CInitSock(BYTE minorVer = 2,BY……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2368浏览 708个赞
题目:输入n个整数,输出其中的k个最小数。例如:例如输入1,2,3,4,5,6,7和8这8个数字,则最小的4个数字为1,2,3和4。解题思路:当然,方法最简单的就是对这n个整数都进行排序操作,但这种方法的时间复杂度尤其的高。因此,我采用了,用另外k个空间,以换取时间的方法 。每次从输入的n个整数中读入一个数。如果数组中已经插入的元素少于k个,则将读入的整数……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1553浏览 1464个赞
C++ 通过堆栈实现进制转换的代码#include<iostream.h>#define ten 10#define hundred 100struct sqstack{ int* p; int top; int size;};void pop(sqstack &q,int &e){ e=q.p[--q……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1869浏览 1415个赞
C++ Unicode(char*)转UTF8的代码1.这里只是单个unicode字符的转换,字符串转换的话需要遍历整个字符串,可用std::string的append添加.2.如果只是2字节宽的unicode,只需要unicode_char_length = 2就行了。转自:http://blog.csdn.net/infoworld/article/de……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2786浏览 2848个赞
C++编写的页面淘汰算法FIFO//FIFO#include<iomanip>#include<iostream>using namespace std;void discard(int Array[][19],int pagenumber[],int page[],int max);int FIFO(int page……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2913浏览 818个赞
C++编写的页面淘汰算法LRU转自:http://blog.csdn.net/caidadong/article/details/8453483//FIFO#include<iostream>#include<iomanip>using namespace std;void discard(int Array[][19]……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2375浏览 1721个赞
C++编写的页面淘汰算法OPT转自:http://blog.csdn.net/caidadong/article/details/8453432//OPT/*算法思想:1.求出当前页架中那个是可以置换的,这就要求分析匹配当前页架中的页面和访问序列, 看访问序列中接下来页面中最近访问的位置是哪,然后比较大小。*/#include<ios……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2174浏览 2281个赞
C++实现的计数排序与基数排序转自:http://blog.csdn.net/bruce_zeng/article/details/8452964 这里的两个排序的期望运行时间都是O(n),应该是到目前为止时间复杂度最低的了。计数排序计数排序假设n个输入元素的每一个都是介于0到K之间的……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2504浏览 1439个赞
C++删除字符串中特定的字符//处理string类型的方法del_sp(string &str)待测试//处理C-Style的方法可用,可以考虑将该方法改写为void del_ch(char *src , char ch),使其更加通用化。#include <iostream>#include <string>u……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2756浏览 1772个赞
C++ 读取堆栈trace并写入控制台StackTrace *st = new StackTrace(true);// true means get line numbers.for ( int i = 0; i < st->FrameCount; ++i ) { StackFrame *sf = st->GetFrame(i……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2902浏览 222个赞
C++双向链表代码,使用了oop技术//An example of a simple double linked list using OOP techniques#include <iostream>using namespace std; struct Node{ double value; Node *N,*P; ……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1680浏览 1938个赞
C++ Failproof xor 加解密源代码/* All of the XOR encryption algorithms I encountered on the web were faulty on * some keys/inputs using binary read & write both for files and cha……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2198浏览 690个赞
一个模板化的C++堆栈类//An example of using templated class to create stack depends on underlying array.#include<iostream>#include<cstdlib>#define default_value 10using na……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2498浏览 2147个赞
一个模板化C++队列类//The following program shows OOP style technique to create queue buffer (FIFO) using class template #include<iostream>#include<cstdlib>#define defa……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2823浏览 2142个赞
一个C++实现的简单哈希表(hashtable)范例//A simple example of hashtable#include <iostream>#include <cstdlib>#include <cstring>#include <iomanip>#define SIZE_KEY ……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2514浏览 1522个赞
windows下把ntstatus转换成win32 error的C++代码/* * This is an alternative to the RtlNtStatusToDosError() * function in ntdll.dll. It uses the GetOverlappedResult() * function in kern……继续阅读 » 水墨上仙 4年前 (2021-03-24) 3058浏览 828个赞
一个C++堆栈类,已经模板化,支持泛型//An example of using templated class to create stack depends on underlying array.#include<iostream>#include<cstdlib>#define default_value 10u……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2101浏览 1018个赞
一个模板化的C++队列类,支持泛型//The following program shows OOP style technique to create queue buffer (FIFO) using class template #include<iostream>#include<cstdlib>#defin……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2169浏览 2630个赞
本文隶属于AVR单片机教程系列。 背景(一) 寒假里做了一个灯带控制器: 理想情况下我应该在一个星期内完成这个项目,但实际上它耗费了我几乎一整个寒假,因为涉及到很多未曾尝试的方案。在这种不是很赶时间的……继续阅读 » 开心洋葱 4年前 (2021-03-24) 2731浏览 0评论1229个赞
目录 预备知识 普通的Nim游戏 SG函数 预备知识 公平组合游戏(ICG) 若一个游戏满足: 由两名玩家交替行动; 游戏中任意时刻,合法操作集合只取决于这个局面本身; 若轮到某位选手时,若该选手无合……继续阅读 » HinanawiTenshi 4年前 (2021-03-24) 1869浏览 0评论2339个赞
要点回顾 此部分方便知识点快速回顾,首次阅读请从引言部分开始。 哈希表(Hash Table)其实也叫散列表,是一个数据结构。 哈希表本质上就是一个数组,只不过数组存放的是单一的数据,而哈希表中存放的……继续阅读 » 开心洋葱 4年前 (2021-03-24) 1841浏览 0评论168个赞