会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
sowhat1412
公众号:sowhat1412 海量资源等你来
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
37
38
39
40
41
42
下一页
2017年3月4日
链式Tree->二叉搜索树
摘要: // http://blog.csdn.net/fansongy/article/details/6798278/ #include #include using namespace std; ...
阅读全文
posted @ 2017-03-04 16:19 sowhat1412
阅读(127)
评论(0)
推荐(0)
2017年3月3日
【Spring】0.Spring Context等基础知识点
摘要: Spring IOC/DI AOP 理解前言 作为从事java开发的码农,Spring的重要性不言而喻,你可能每天都在和Spring框架打交道。Spring恰如其名的,给java应用程序的开发带了春天般的舒爽感...
阅读全文
posted @ 2017-03-03 15:27 sowhat1412
阅读(132)
评论(0)
推荐(0)
String 类基本函数的实现self
摘要: void strcpy(char* dest, const char* src){int i=0;while(src[i]!='\0'){dest[i] = src [i];i++;}dest[i] = '\0'...
阅读全文
posted @ 2017-03-03 14:15 sowhat1412
阅读(129)
评论(0)
推荐(0)
int-> string 等各种类型转换
摘要: int = atoi(char*) char*=string.c_str(); http://www.cppblog.com/Sandywin/archive/2007/07/13/27984.html使...
阅读全文
posted @ 2017-03-03 10:00 sowhat1412
阅读(139)
评论(0)
推荐(0)
数组作为函数参数传递时
摘要: 本文需要解决C++中关于数组的2个问题:1. 数组作为函数参数,传值还是传址?2. 函数参数中的数组元素个数能否确定?先看下面的代码。[cpp] view plain copy#include using...
阅读全文
posted @ 2017-03-03 09:18 sowhat1412
阅读(434)
评论(0)
推荐(0)
2017年3月2日
Tree 笨方法实现
摘要: #include #include typedef struct BTnode{ int data; struct BTnode *pLchild; struct BTnode *pRchild...
阅读全文
posted @ 2017-03-02 15:06 sowhat1412
阅读(68)
评论(0)
推荐(0)
双向链表
摘要: // 双向线性链表#include using namespace std;typedef struct node{ int data; struct node * front; struct ...
阅读全文
posted @ 2017-03-02 14:43 sowhat1412
阅读(59)
评论(0)
推荐(0)
带头节点的循环链表及两个循环链表的合并
摘要: #include using namespace std;bool cir=0;#if 1 // 0 为队列一样的链表typedef struct cirlist{ int data; struct...
阅读全文
posted @ 2017-03-02 11:37 sowhat1412
阅读(193)
评论(0)
推荐(0)
josephus问题->不带头节点的循环链表
摘要: #include #include using namespace std;typedef struct node{ int data; struct node *next;}NODE;NODE* c...
阅读全文
posted @ 2017-03-02 11:33 sowhat1412
阅读(88)
评论(0)
推荐(0)
数组形式链表
摘要: #include using namespace std;typedef struct listarr{ int * arr; int cap; int size;}LIST_ARR;LIST_...
阅读全文
posted @ 2017-03-02 10:51 sowhat1412
阅读(90)
评论(0)
推荐(0)
上一页
1
···
37
38
39
40
41
42
下一页
公告