- 博客(10)
- 资源 (1)
- 收藏
- 关注
原创 算法之——上台阶
题目:有一楼梯共m级,刚开始时你在第一级,若每次只能跨上一级或二级,要走上第m级,共有多少走法?注:规定从一级到一级有0种走法。 输入 样例输入 输入数据首先包含一个整数n(1<=n<=100),表示测试实例的个数,然后是n行数据,每行包含一个整数m,(1<=m<=40), 表示楼梯的级数。 2 2 3 输出 样例输出 对于每个测试实例,请输出不同走法的数量。
2016-09-03 21:29:33 351
原创 ios项目拆分之一 —— 扩充UIButton布局
ios项目拆分之一 —— 扩充UIButton布局参加比赛的项目,从团队组建到至今,一直一个人负责ios平台的app开发,开发周期断断续续一个月,主体功能一周完成,那一周真是酸爽,一天24h除了睡觉就是在敲键盘,好在结果还不错,有了回报。快速开发过去近一个月,吸收的东西太多,没有好好整理,慢慢写吧,其中用到了好多第三方sdk,主要功能包括人机互动,天气预报(只显示在UI上),拍照识别,地图导航,音乐
2016-08-22 00:51:30 257
原创 iOS —— UINavigationController 补充
在项目中需要在 UI 界面 导航栏 左侧的按钮 不显示文字,只显示返回的按钮。如图: 要把 Back 这个字去掉,左边的箭头保留,效果图如下: 用一个很简单大方法即可实现,不用重写一个backBtn,再赋值这么恶心的方法。[[UIBarButtonItem appearance] setBackButtonTitlePosition Adjustment: UIOffsetMake(0,-60)
2015-07-03 17:14:07 330
原创 Xcode —— waiting for (app's name) to launch 模拟器开不了
运行环境:Xcode 6.3.2 1.出现问题的操作可能: 在跑程序的时候,点了设置全局断点3.尝试了网上大多提到的办法,还是无法解决,包括,想到了配置问题,添加armv7,armv7s,arm64也没用。4.删除设置的全局断点5.最终解决办法:在 Xcode 的product下面改,如图:进入页面:Automatically
2015-07-01 09:53:13 471
原创 debug - UITextField 输入完跳入下一field,按钮变化
textField.h 里创建对象 @interface ***Controller : UIViewController { UITextField *phoneNumber; UITextField *verification; } .m 里编写逻辑及其相关的方法- (UITableViewCell *)tableView:(UITableView *)tabl
2015-06-23 13:27:18 302
原创 debug - UITextField 控制输入长度
限制输入长度:创建对象: UITextField *NameTF; // 用的如下方法控制长度在20 – (BOOL) textField:(UITextField )textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString )string
2015-06-23 11:26:23 271
原创 模块——UIWebview的应用
UIWebview项目里的一个小模块用到了UIWebview这个控件,屏幕的适配,Json解析。UIWebview屏幕适配字符串解析UIWebview 1 .m 中 import “JSONKit.h” 等…… 2 .m 里加代理 @interface () 功能相当于在环境下引入webview这个模块接口。代码如下:
2015-06-23 11:09:25 276
原创 leetCode刷题——Same Tree
Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identical and the nodes have the same value.题意为:判断两棵二叉
2015-04-27 21:52:51 257
原创 leetCode刷题——Maximum Depth of Binary Tree
Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.题意为:输出一个二叉树的深度实现起来很容易。Accepted
2015-04-27 21:34:08 359
原创 leetCode刷题——Count Primes
Description:Count the number of prime numbers less than a non-negative number, nHint: The number n could be in the order of 100,000 to 5,000,000.题目觉得自己理解有误,理解的是在100,000到5,000,000里输出全部素数???
2015-04-27 20:38:20 332
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人