会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
dzq999
博客园
首页
新随笔
联系
管理
上一页
1
···
3
4
5
6
7
8
9
10
下一页
2016年12月16日
排序算法1-选择排序
摘要: 排序算法,比较常用的是选择排序和冒泡排序 还是直接上代码比较直接,这里对1到9这几个数字进行了排序 示例代码 int arr[] = {5,8,6,4,9,3,1,7,2}; int length = sizeof(arr)/sizeof(int); for(int i = 0; i < lengt
阅读全文
posted @ 2016-12-16 12:13 行者烧炉子
阅读(176)
评论(0)
推荐(0)
2016年12月15日
跑步方式和要领
摘要: 一些方式 @单双跑 单日跑小圈,2公里,双日跑大圈,3公里 @降噪跑 尽量中后脚掌着地,然后前脚掌,尽量减少落地音,更保护脚,又能消耗更多卡路里 一些要领 @2016-12 中直周圆
阅读全文
posted @ 2016-12-15 18:05 行者烧炉子
阅读(116)
评论(0)
推荐(0)
xcode黑科技
摘要: 1多开模拟器 使用命令行: cd /Applications/Xcode1.app/Contents/Developer/Applications/&open -n Simulator.app/ 或者: open -n /Applications/Xcode1.app/Contents/Develo
阅读全文
posted @ 2016-12-15 16:51 行者烧炉子
阅读(123)
评论(0)
推荐(0)
xcode快捷键
摘要: @杀死模拟器的程序 1command+shift+H按两下 2然后也会弹出这个界面
阅读全文
posted @ 2016-12-15 10:21 行者烧炉子
阅读(125)
评论(0)
推荐(0)
2016年12月11日
循环圈小算法
摘要: 小算法循环圈的公式:(n+1) % (maxN+1) 比如实现0到3的循环 0+1 %4 = 1 1+1 %4 = 2 2+1 %4 = 3 3+1 %4 = 0 比如实现1到3的循环 1+1 %4 = 2 2+1 %4 = 3 3+1 %4 = 1
阅读全文
posted @ 2016-12-11 20:18 行者烧炉子
阅读(218)
评论(0)
推荐(0)
stdlib标准库的常用API
摘要: 1获取随机数 比如0~99 int i = arc4random_uniform(100) 1获取随机数 比如0~99 int i = arc4random_uniform(100)
阅读全文
posted @ 2016-12-11 10:01 行者烧炉子
阅读(265)
评论(0)
推荐(0)
2016年12月10日
foundation系列
摘要: 1如何将布尔值转为OC对象? 1把 BOOL 值包装到 NSNumber中: NSNumber *boolNumber = [NSNumber numberWithBool:YES] 2获取BOOL值: BOOL b = [boolNumber boolValue];
阅读全文
posted @ 2016-12-10 23:00 行者烧炉子
阅读(110)
评论(0)
推荐(0)
mac中openfire启动失败的解决方式
摘要: 不知为何,几次出现这个问题了 解决方法:使用终端命令 1:sudo chmod -R 777 /usr/local/openfire/bin 2:cd /usr/local/openfire/bin 3:export JAVA_HOME=`/usr/libexec/java_home` 4:echo
阅读全文
posted @ 2016-12-10 20:18 行者烧炉子
阅读(491)
评论(0)
推荐(0)
XMPP 常见错误:(<failure xmlns="urn:ietf:params:xml:ns:xmpp-sasl"><not-autho
摘要: 1检查jid XMPP认证的问题,一般都是与JID有关的,因此解决这类问题,首选的入口就是分析一下XMPPStream的JID,客户端在与服务器连接后,Socket就绑定了这个端口,用来处理与服务器的往返数据,认证就是其中之一.而且,往往我们在与服务器来连接的时候,为了简便,经常使用localhos
阅读全文
posted @ 2016-12-10 11:59 行者烧炉子
阅读(296)
评论(0)
推荐(0)
2016年12月4日
数据类型杂记
摘要: 三字符系列 3.1怎么打印双引号等特殊字符? 用斜杠\标识一下即可: printf("\" good \" ");
阅读全文
posted @ 2016-12-04 23:35 行者烧炉子
阅读(108)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
下一页
公告