Fork me on GitHub
摘要: <?php header("content-type:text/html;charset=utf-8"); //二分查找法 (排序好的数组) function binSearch($arr,$search){ $height=count($arr)-1; $low=0; while($low<=$h 阅读全文
posted @ 2019-05-23 10:16 三冬两夏 阅读(99) 评论(0) 推荐(0) 编辑
摘要: <?php header("content-type:text/html;charset=utf-8"); $arr = array(3,5,8,4,9,6,1,7,2); echo implode(" ",$arr)."<br/>"; // // 常用排序算法 // //冒泡 function B 阅读全文
posted @ 2019-05-23 10:14 三冬两夏 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 先看下效果: 1、打开微信小程序官方文档https://developers.weixin.qq.com/miniprogram/dev/index.html我们会看到让我们申请账号,这里先不着急申请,因为我们每个人都可以用测试号。向下滑动看到,开发者工具的下载链接,点击下载并且安装 2、安装后打开 阅读全文
posted @ 2019-05-23 10:08 三冬两夏 阅读(945) 评论(0) 推荐(0) 编辑