- 博客(7)
- 资源 (2)
- 收藏
- 关注
原创 栈的操作
#include using namespace std;template //定义一个模板class Stack{private: int SIZE; //栈的大小 int top; //栈顶的位置 T * stac; //T类型的数组public: S
2014-12-29 11:37:29 430
原创 求一个字符串中某个子串的个数(C++)
int count_sunstr(char* substr,char* str){ int count = 0; int i,j; for(i =0;i { for(j = 0;j { if(*(substr+j)!=*(str+i+j)) {
2014-12-29 11:02:14 2910
原创 常见排序算法
template //冒泡排序算法void MaoPaoSort(T arr[],int size){ for(int i=0; i { for(int j = 0;j { if( arr[j]>arr[j+1]) { T t = arr[
2014-12-28 16:24:37 341
原创 单向链表
#include #include "Node.h"using namespace std;int main(){ Link link(5); cout link.printNode(); cout link.insertNode(6); cout link.delete
2014-12-28 15:36:20 289
转载 java中关键字
访问控制:private 私有的protected 受保护的public 公共的类、方法和变量修饰符abstract 声明抽象class 类extends 扩允,继承final 终极,不可改变的implements实现interface 接口native 本地new 新,创建static 静态strictfp 严格,精准synchroni
2013-11-25 21:58:32 361
转载 键盘各个键的作用
键盘上每个键作用F1帮助 F2改名 F3搜索 F4地址 F5刷新 F6切换 F10菜单 CTRL+A全选 CTRL+C复制 CTRL+X剪切 CTRL+V粘贴 CTRL+Z撤消 CTRL+O打开 SHIFT+DELETE永久删除 DELETE删除 ALT+ENTER属性 ALT+F4关闭 CTRL+F4关闭 ALT+TAB
2013-11-15 22:37:43 554
java API 文档
2013-10-13
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人