自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

GreatShadowWalker的博客

一个C++的忠诚爱好者。。

  • 博客(6)
  • 资源 (4)
  • 收藏
  • 关注

原创 寻找数组的连续子数组的最大和

#include #include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int maxSum(int* m,int size){ int * maxArr=new int[size];

2013-10-27 14:14:44 589

原创 递归 寻找满足条件的多个数

#include #include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ list dataList; void find_factor(int sum,int n){ //递归出口

2013-10-26 17:01:30 727

原创 寻找满足条件的两个数

#include #include #include #include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ pair findSum(int * m,int sum,int siz

2013-10-26 16:41:00 627

原创 字符串匹配问题

题目描述: 假设两个字符串中所含有的字符和个数都相同我们就叫这两个字符串匹配,比如:abcda和adabc, 由于出现的字符个数都是相同,只是顺序不同,所以这两个字符串是匹配的。 #include #include #include #include using namespace std; bool isMatch(const char* str1,const char * str

2013-10-25 10:38:51 1059

原创 字符串是否包含问题利用素数求解

字符串是否包含的意思是一个短字符 #include #include using namespace std; int primeNum[]={ 2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101}; bool compare(string longString,string shortSt

2013-10-24 21:30:42 928

原创 C++ 字符串循环右移

#include #include #include using namespace std; //Reverse a char ,then k times string RightShift(string s, int N ,int k){ k=k%N; for(int i=0;i<k;i++){ int t=s[N-1]; for(int j=N-1;j>=0;j--){

2013-10-24 19:00:55 3800

计算机图形学画线

计算机图形学DDA 中点画线 Bresseham算法画线的C#源代码

2012-11-02

Windows APi

Windows api 开发的好资料

2012-09-29

Qt开发资料下载

Qt开发的好资料

2012-09-29

HTML语言入门教程

HTML开发的好书籍,这个真的很好,很好,推荐下载

2012-09-29

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除