会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Shell
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
下一页
2016年11月15日
IOS-OC delegate
摘要: # OC delegate* 定义协议:创建一个属性和方法清单* 遵守协议:一个类实现某个协议中规定的方法* 一个类可以有其他很多属性或方法,可同时实现多个协议的属性和方法清单 委托类的头文件 委托者的头文件 委托者在.m文件中使用delegate 中的方法 被委托者实现delegate的方法 ma
阅读全文
posted @ 2016-11-15 13:48 ShellHan
阅读(415)
评论(0)
推荐(0)
2016年11月14日
克拉默法则
摘要: 克拉默法则
阅读全文
posted @ 2016-11-14 17:23 ShellHan
阅读(1621)
评论(0)
推荐(0)
2016年11月5日
Version 1.6.0_65 of the JVM is not suitable for this product. 问题解决
摘要: 打开eclipse.ini 加入 -vm /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home 当前java的安装路径 ⚠️ 不要加入后面的/bin/Java 亲试有效 :)
阅读全文
posted @ 2016-11-05 09:30 ShellHan
阅读(3890)
评论(0)
推荐(0)
2016年10月23日
DFS&&BFS ---C ----complete
摘要: // // main.cpp // BFS_cursive // // Created by 韩雪滢 on 10/23/16. // Copyright © 2016 韩雪滢. All rights reserved. // #include #include #define NUM_VERTEX 10 struct Vertex { char name; i...
阅读全文
posted @ 2016-10-23 19:58 ShellHan
阅读(254)
评论(0)
推荐(0)
poj1184
摘要: 我只是做了一点微小的工作,比如看了大神的代码然后加了注释,大神的原博客http://www.cnblogs.com/suncoolcat/p/3339508.html
阅读全文
posted @ 2016-10-23 16:20 ShellHan
阅读(227)
评论(0)
推荐(0)
DFS-C
摘要: #include typedef struct node { struct node *next; int vertex; }node; node *G[20]; //heads of linked list int visited[20]; int n; void read_graph(); //create adjacency list void insert...
阅读全文
posted @ 2016-10-23 11:43 ShellHan
阅读(192)
评论(0)
推荐(0)
BFS-C
摘要: // // main.c // BFS // // Created by 韩雪滢 on 10/23/16. // Copyright © 2016 韩雪滢. All rights reserved. // #include #include #define MAX 100 #define initial 1 #define waiting 2 #define visited 3 ...
阅读全文
posted @ 2016-10-23 11:35 ShellHan
阅读(253)
评论(0)
推荐(0)
2016年10月19日
poj1083
摘要: // // main.cpp // 1083_simpleAnswer // // Created by 韩雪滢 on 10/19/16. // Copyright © 2016 韩雪滢. All rights reserved. // #include #include #include #include using namespace std; int n,a[405];...
阅读全文
posted @ 2016-10-19 21:45 ShellHan
阅读(113)
评论(0)
推荐(0)
2016年10月15日
基数排序
摘要: #include #include #include #include typedef struct bucket_item s_bucket_item; struct bucket_item{ int value; s_bucket_item * next; }; typedef struct bucket s_bucket; struct bucket{ s_buc...
阅读全文
posted @ 2016-10-15 21:45 ShellHan
阅读(152)
评论(0)
推荐(0)
二分法插入排序--C
摘要: // // main.c // binarySort // // Created by 韩雪滢 on 10/15/16. // Copyright © 2016 韩雪滢. All rights reserved. // //复杂度O(nlogn) #include int a[10]={21,56,43,12,3,99,56,23,2,12}; int main() { int...
阅读全文
posted @ 2016-10-15 20:45 ShellHan
阅读(1069)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
下一页
公告