C++ 中字节和千字节之间的转换#include <iostream>#include <cmath>using namespace std;int main(){ long double byte; long double kilobyte; long double megabyte;……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1239浏览 2772个赞
C++动态二维数组演示#include <iostream>#include <string>using namespace std;void allocate_2D(int **&List, int x, int y, int ycur, int xmax){ //makes a temp for savin……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2086浏览 601个赞
适合初学者的C++代码:将单位尺转换成米#include <iostream>using namespace std;int main(){ double f; double m; cout<< " enter Length in Feet"; cin>&……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1273浏览 1740个赞
C++实现两个超大的字符数字相加的算法#include <iostream>#include <string>#include <stack>using namespace std;//Acts as an helper function for large numeric string additionv……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2089浏览 267个赞
C++实现的一个简单的基于文本的角色扮演游戏#include <stdlib.h>#include <time.h>#include <iostream>#include <fstream>#include <string>#include <windows.h>//u……继续阅读 » 水墨上仙 4年前 (2021-03-24) 3124浏览 2869个赞
C++获取本机IP地址列表/* * main.c * ---------------------------------------------- * 2013-01-09 chrisniu1984@gmail.com * * [BUILD] * gcc -o main main.c -Wall * */#include <st……继续阅读 » 水墨上仙 4年前 (2021-03-24) 3074浏览 256个赞
C++计算一个超级大数的阶乘算法/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// GROUP 12// Group member……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2868浏览 1198个赞
C++控制一组字符串按照字母顺序排序/******************************************************** Name: ** Filename: alphabetize.cpp** Project #: Deitel & Deitel 5.38** Project Description: U……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1334浏览 390个赞
C++编写的一个简单的猜数字游戏代码//Kerri Byrd//May 28, 2005//C9A4P447#include <iostream>#include <string>#include <cstdlib>#include <cctype>#include <ctime>……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2783浏览 824个赞
C++计算一个大数的阶乘// calculate large factorials (factorials above 12!)// note that 13! already exceeds unsigned long// a Dev-C++ tested console program by vegaseat 26mar2005 #in……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1394浏览 2435个赞
C++翻转字符串#include<iostream>#include<string>using namespace std;int man(){ string s; cout<<"Type something...\n"; getline(cin,s); string::iterat……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2222浏览 2927个赞
C++不使用临时变量交换两个数字// swap two numbers without using a temporary variable// the numbers can be either integers or floats#include <iostream>using namespace std;int main()……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1551浏览 2371个赞
C++转换十进制数到任何其它进制的函数#include <iostream>#include <string>std::string conv(int decimal, int base);int main(void){ std::cout << "Binary\tOctal\tDecimal……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1793浏览 645个赞
C++统计每一个字符在字符串中出现的次数//Number of each character repetition in a string//programming by : Erfan Nasoori//Email : ketn68@yahoo.com//Date of send : 2009/1/21#include <iostrea……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1775浏览 2370个赞
C++ 归并排序算法//Merge sort //programming by : Erfan Nasoori//Email : ketn68@yahoo.com//Date of sent : 2009/1/21#include<iostream.h>#include<math.h>//function decla……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1769浏览 1661个赞
C++ 二分查找算法//Binary search //Programming by : Erfan Nasoori//Mail : ketn68@yahoo.comDate of send : 2009/2/1#include <iostream>#include <conio>int binarysearch(i……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1539浏览 1973个赞
C++ 链表冒泡法排序算法//linked list bubble sort//programming by : Erfan Nasoori//Mail : ketn68@yahoo.com//Date of send : 2009/1/13#include <iostream>#include <conio>cla……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2167浏览 2422个赞
C++ 线性搜索算法演示,线性搜索效率要低于二分查找算法//Linear search //Programming by : Erfan Nasoori//Mail : ketn68@yahoo.com//Date of send : 2009/2/1 #include<iostream>#include<conio&g……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1927浏览 2910个赞
C++ 打印Pascal 三角形#include <iostream>using namespace std;struct x{ int a[100];};struct x b[100];int main(){ int n; cout<<"Enter value of N: "; c……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1400浏览 1274个赞
C++从任意进制的数转换成另外一个指定进制的数例如,从2进制转换成10进制,8进制转换成16进制等#include <iostream>#include <string>std::string conv(std::string number, int startBase, int endbase);long long po……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1790浏览 1852个赞
C++快速排序算法,用到了函数指针#include <iostream>#include <algorithm>#include <string>#include <cctype>struct example{ int id; std::string name;};templa……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1431浏览 422个赞
Dijkstra算法和Bellman-Ford算法只能计算出起始点到其他各点的最短路径,但不能计算任意两队顶点之间的最短路径。若真想利用这两张算法,可以来一个循环,每次让不同的顶点成为起始顶点,这样也可以解决,但这种方法效率比较低,所以要想其他方法。我们可以用最优化的原理来求每对顶点之间的最短路径,基本思想是:假设图中有一条从i到j结点的最短路径,k是图中的……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1226浏览 461个赞
以前写的二叉搜索树,其中节点是类模板,可对任何实现了比较大小的数据的插入、查找及删除操作。并使用Traits技术实现了使用迭代器对操作数据,移植性好,效率较高。使用请注明出处,谢谢。来源:http://blog.csdn.net/guankle/article/details/8133945#pragma once#include <iostr……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2079浏览 834个赞
Java异步下载http页面演示代码package in.datashow.sover;import java.io.File;import java.io.IOException;import java.util.ArrayList;import java.util.List;import org.apache.commons.io.Fil……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1373浏览 2865个赞
VC++ 获取代码段执行时间 代码1:精确到秒double tstart,tend,tget; tstart=GetTickCount(); //程序段 tend=GetTickCount();//只能精确到秒 tget=tend-tstart; ……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2027浏览 1357个赞
C++数组反转代码#include <stdio.h>inline void xchg(int *a,int *b){ (*a)^=(*b);//^=(*a)^=(*b); (*b)^=(*a); (*a)^=(*b);}void reverse(int a[],int n){ static int……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2367浏览 1672个赞
C++将整数数组分割成奇数和偶数两个数组的代码//get an array and by using it, create two different array which are odd and evenvoid arraySplitter(int *&array, int size, int &sizeEven, int &am……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1286浏览 2155个赞
C++分割文件并进行BASE64编码#include <string>using namespace std;string Encode(char* Data,long DataByte){ //编码表 const char EncodeTable[]="ABCDEFGHIJKLMNOPQRSTUVWXYZa……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2117浏览 1384个赞
C++二分查找算法演示代码#include <cstdio>/* * 传统的二分查找,数组有序且没有重复 */int binary_S(int *a, int n, int key){ int l = 0, r = n-1; int mid; while (l <= r){ mid =……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1577浏览 877个赞
C++实现奇数魔方阵/* 魔方阵,古代又称“纵横图”,是指组成元素为自然数1、2…n的平方的n×n的方阵, 其中每个元素值都不相等,且每行、每列以及主、副对角线上各n个元素之和都相等。 输入一个奇数,实现奇数魔方阵。 附:奇数魔方阵的实现方法 (1) 将1填入第一行中间; (2……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1805浏览 2465个赞
霍夫曼编码(Huffman Coding)是一种编码方式,是一种用于无损数据压缩的熵编码(权编码)算法。1952年,David A. Huffman在麻省理工攻读博士时所发明的,并发表于《一种构建极小多余编码的方法》(A Method for the Construction of Minimum-Redundancy Codes)一文。在计算机数据处理中,……继续阅读 » 水墨上仙 4年前 (2021-03-24) 3135浏览 1940个赞
一个简单的C++调用动态库的实例转自:http://blog.csdn.net/lxh1230119/article/details/8071730 先创建一个动态库dll工程工程中添加 dlltest.cpp  dlltest.d……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2608浏览 1098个赞
C++数字转换代码片段#include "stdafx.h"#include <iostream>#include <string>#include <functional>using namespace std;void id2gid(long id,char* pszID){ ……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1577浏览 1819个赞
C++操作mysql数据库范例代码#include <my_global.h>#include <mysql.h>void TestMySQL(){ TRACE("MySQL client version: %s\n", mysql_get_client_info()); MYSQL *conn =……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1487浏览 1146个赞
C++计算用户打字速度#include <stdio.h>#include <dos.h>#include <conio.h>#define ESC 0x1b#define BSPACE 0x08const unsigned long far * const dosTime = (co……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2422浏览 1722个赞
C++实现二分查找算法的代码<<array binary search>>=template< typename T, typename compare_less >int array_binary_search(T a[], int low, int high, T target) { while (l……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2383浏览 628个赞
C++冒泡法排序算法演示代码#include <algorithm> template<typename Iterator> void bubbleSort(Iterator first, Iterator last) { Iterator i, j; for (i = first; i……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1351浏览 2571个赞
C++计算倒数的代码#include <iostream> using namespace std; class Var; class Base { public: virtual ~Base() {}; virtual const Base *clone() = 0; virtua……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1598浏览 427个赞
C++添加字符串到文件#include <iostream> #include <fstream> int main() { std::ofstream out("filename", std::ios::app); out << "aString"……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2482浏览 126个赞
C++版的快速排序法#include <functional>#include <algorithm>#include <iterator>template< typename BidirectionalIterator, typename Compare >void quick_sort( Bi……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2848浏览 1371个赞
C++读取文件到字节数组#include <iostream> #include <fstream> char* readFileBytes(const char *name) { ifstream fl(name); fl.seekg( 0, ios::end ); siz……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2159浏览 2218个赞
KMP算法实现字符串搜索#include<stdio.h>#define maxsize 100typedef struct string{ int n; char s[maxsize];}string;int get_nextval(string &T,int nextval[]){ int i=1; in……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1144浏览 697个赞
C++归并排序算法 *MERGE-SORT */#include<cstdlib>#include<limits>#include<iostream>#include<vector>#include<iomanip>using namespace std;typedef vec……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1502浏览 1341个赞
C++堆排序代码演示/*6 堆排序 *HEAP-SORT */#include<cstdlib>#include<iostream>#include<vector>#include<iomanip>using namespace std;typedef vector<int>:……继续阅读 » 水墨上仙 4年前 (2021-03-24) 2150浏览 2442个赞
C++全排列实现代码 思路1——全排列的递归实现核心思想:比如对于字符串”abc”,第一步:求所有可能出现在第一个位置的字符即:a,b,c。使用方法:把第一个字符和后面的b、c字符进行交换。第二步:把第一个字符后面的所有字符仍然看成两部分,即后面的第一个字符及除此之外的其他字符……继续阅读 » 水墨上仙 4年前 (2021-03-24) 1192浏览 1932个赞