- 博客(11)
- 收藏
- 关注
原创 android 多点触摸绘画demo
public class GestureView extends View { public GestureView(Context context) { super(context); } TwofingerGestureDetector detector; Paint paint; public GestureView(Context contex
2016-05-04 21:08:14 2036 4
原创 MVP 一种实现方式
MVP 一种实现方式 所谓的mvp便是使用presenter操作view和model做到ui逻辑和业务逻辑的分离 以便于测试等 mvp是什么 M model 模型 指的是一个封装好的功能 从数据库中获取数据 根据网址爬取html V view 视图 指的是界面ui 按钮的样式 列表的横向纵向 给定数据 view负责将数据表示出来 P presenter 代理 负责view和model之间
2016-02-29 19:31:07 456
原创 51Nod 论学好数学是多么重要 (圆与三角形相交)
#include //#include //#define cin in typedef long long ll; using namespace std; struct point { int x; int y; }; ll getdistance(point s1,point s2) { return (s1.x-s2.x)*(s1.x
2015-02-03 18:40:12 555
原创 POJ 1241
Oil Deposits Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 13665 Accepted Submission(s): 7853 Problem Description The GeoSurvC
2014-12-27 19:56:37 588
原创 1:数据结构与算法分析(c语言描述)引论(1)
在11月12号在亚马逊买的这本书,第天就送到了,随手翻了翻。。严峻的意识到这貌似不是我能看懂的。。因为这货在前言就说她适合作为高级数据结构或者研究生第一年算法分析课程的教材。。在引论开篇举得第两个例子排序倒是知道,让我解个字谜我真心跪啊。。。在加上学校还有一些活动,就和k&r一起扔在角落,今天我终于鼓起勇气认真的看了第一章。没有被写作数列前n项和读作级数的数学基础吓到,随意的看到了课后习题。华丽的
2014-11-29 22:56:56 790
原创 hdoj 1003 最大子序列 (考虑负数)On算法
1003题目 Problem Description Given a sequence a[1],a[2],a[3]......a[n], your job is to calculate the max sum of a sub-sequence. For example, given (6,-1,5,4,-7), the max sum in this sequence
2014-11-26 14:39:41 912
原创 最大子序列递归
#include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int makeSumMax(const int *,int,int); int main(int argc, char
2014-11-16 22:19:37 583
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人