上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 173 下一页
摘要: 场景:1. ADB 作为pc端和手机端通讯的桥梁, 起到调试手机app,查看手机信息的重要作用.2. 这里列举了一些比較有用的命令方便速查.查看开启USB调试的设备列表: adb devices 安装APK: adb -s xxxxx(设备序列号,使用adb devices获得,假设仅仅连接了一个设 阅读全文
posted @ 2017-08-19 16:33 gccbuaa 阅读(162) 评论(0) 推荐(0)
摘要: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o 阅读全文
posted @ 2017-08-19 11:41 gccbuaa 阅读(389) 评论(0) 推荐(0)
摘要: 1、首先计算出一幅图像的直方图 //计算直方图 cv::MatND ImageHist::getHist(const cv::Mat &image){ cv::Mat im; if(image.channels() == 3) cv::cvtColor(image,im,CV_RGB2GRAY,0) 阅读全文
posted @ 2017-08-19 09:35 gccbuaa 阅读(1218) 评论(0) 推荐(0)
摘要: 在c++中。const是这么一个东西:假设你希望可以有一些东西是别人不能改动的,这个时候const就起作用了。 const 在使用情况例如以下: a.修饰常量 const int a; int const a; 这里不论const放什么位置,效果事实上都一样的。 b.修饰指针: const doub 阅读全文
posted @ 2017-08-19 08:32 gccbuaa 阅读(184) 评论(0) 推荐(0)
摘要: Given a string s, partition s such that every substring of the partition is a palindrome. Return all possible palindrome partitioning of s. For exampl 阅读全文
posted @ 2017-08-18 21:12 gccbuaa 阅读(395) 评论(0) 推荐(0)
摘要: 做了个输入框样式,如图: CSS代码例如以下: #button { cursor:pointer; width:30%; margin:5px; padding:8px; border-radius:4px 4px 4px 4px; font-size:14px; font-weight:bold; 阅读全文
posted @ 2017-08-18 20:29 gccbuaa 阅读(414) 评论(0) 推荐(0)
摘要: 题目:http://acm.hdu.edu.cn/showproblem.php?pid=5411 题意:按题目转化的意思是,给定N和M,再给出一些边(u,v)表示u和v是连通的,问走0,1,2.....M步的方案数。 分析:这题和 hdu5318 The Goddess Of The Moon差点 阅读全文
posted @ 2017-08-18 19:35 gccbuaa 阅读(183) 评论(0) 推荐(0)
摘要: 1.模型 @class FriendsModel; @interface GroupModel : NSObject @property (nonatomic, copy) NSString *name; @property (nonatomic, copy) NSString *online; @ 阅读全文
posted @ 2017-08-18 18:42 gccbuaa 阅读(358) 评论(0) 推荐(0)
摘要: 题目描写叙述 输入一个表示整数的字符串,把该字符串转换成整数并输出,比如输入字符串"345",则输出整数345。 主要思想:将输入的字符串,拆解为单个的字符 1、去空之后,開始的字符是否为“+”或者“-”。 2、每一个字符减去‘0’,判读输入的字符是不是0-9的。 3、假设为可变数字字符则先前结果乘 阅读全文
posted @ 2017-08-18 18:06 gccbuaa 阅读(439) 评论(0) 推荐(0)
摘要: <strong><span style="font-size:18px;">/*** * @author YangXin * @info 准备Mahout所用的向量 * 将苹果的信息转化为输入的向量 */ package unitEight; import java.util.ArrayList; 阅读全文
posted @ 2017-08-18 17:09 gccbuaa 阅读(225) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 173 下一页