首页 > 2014年04月16日 > 全部分享
ubuntu 12.04 android编译环境配置
n年木有重装过系统了,今天实在首部鸟了。重新装了下。记录下。 1.jdk安装 mtk 需要1.6.45的手动安装配置 2.android sdk安装,以前的sdk直接配置一下环境变量 3.android google编译环境需要的一些库和工具,具体看android官方 4.linux 32位兼容包,sudo apt-get install ia32-libs 5.gcc...
分类:移动平台   时间:2014-04-16 15:00:39    收藏:0  评论:0  赞:0  阅读:515
大整数问题,乘法,加法,阶乘
//大整数相乘 //c[i+j] += a[i]*b[j];数组的每一位相乘然后相加,并得到最终结果 //再考虑进位问题  #include #include #define SIZE 50 int a[SIZE],b[SIZE],c[SIZE*2]; void big_multi(int a[],int b[],int c[]) { int i,j; for (i=0;i...
分类:其他   时间:2014-04-16 12:13:29    收藏:0  评论:0  赞:0  阅读:467
查看进程内存映像命令pmap
名称:        pmap - report memory map of a process(查看进程的内存映像信息) 用法        pmap [ -x | -d ] [ -q ] pids...        pmap -V 选项含义        -x   extended       Show the extended format. 显示扩展格式        -d...
分类:其他   时间:2014-04-16 12:13:47    收藏:0  评论:0  赞:0  阅读:431
贪心背包和0-1背包问题
////0-1背包问题 //#include //using namespace std; //int w[1000],v[1000]; //int f[1000]; //int main() //{ //    int n;//物品数量 //    int c;//背包容量 //    while(cin>>n) //    { //        for(int i=0;...
分类:其他   时间:2014-04-16 15:32:31    收藏:0  评论:0  赞:0  阅读:479
贪心-最优装载问题
//最优装载 #include using namespace std; template void loading(int x[],Type w[],Type c,int n) {    int *t=new int [n+1];    sort(w,t,n);    for(int i=1;i    x[i]=0;    for(int i=1;i    {     ...
分类:其他   时间:2014-04-16 12:14:07    收藏:0  评论:0  赞:0  阅读:625
STL 之count,count_if,max,max_element,min,min_element和random_shuffle
返回 count:在指定区间上统计指定值出现的次数。 count_if:条件统计 max:判断两个数值中的较大值 max_element:查找指定区间的最大元素 min:判断两个数值中的较小值 min_element:查找指定区间的最小元素 random_shuffle:用来将指定区间上的元素按随机顺序排列 声明: #include template iter...
分类:其他   时间:2014-04-16 14:58:54    收藏:0  评论:0  赞:0  阅读:515
最少货币支付问题-贪心
////最少货币支付问题 #include using namespace std; //  1,2,5,10,20,50,100  int main() { int n,t;//t int x[7]; for(int i=0;i { x[i]=0; }贪心-最优装载问题 cin>>n; while(n--) { cin>>t; if(t>=100) { x[6...
分类:其他   时间:2014-04-16 12:09:17    收藏:0  评论:0  赞:0  阅读:560
Struts2提交表单中文乱码问题解决
依据下面方法一一检查 1、将MySQL的默认编码设置为utf8,我是用“MySQL Server Instance Config Wizard”直接弄的,据说my.ini文件也可以设置,我没有试过。    关于查看MySQL编码可以用这个命令:show Variables like '%set%'   还有提下,我创建数据库的代码设置默认为utf8编码格式,只是起先没用“MySQL Se...
分类:其他   时间:2014-04-16 15:28:45    收藏:0  评论:0  赞:0  阅读:561
初识springMVC
Spring 框架提供了构建 Web 应用程序的全功能 MVC 模块。使用 Spring 可插入的 MVC 架构,可以选择是使用内置的 Spring Web 框架还可以是 Struts 这样的 Web 框架。另外,Spring 框架是高度可配置的,而且包含多种视图技术,例如 JavaServer Pages(jsp)技术、Velocity、Tiles、iText 和PIO。S...
分类:编程语言   时间:2014-04-16 12:33:57    收藏:0  评论:0  赞:0  阅读:550
arm汇编--变量
介绍了arm汇编中关于变量的声明 初始化的关键字操作 最后给出一个运用这个方法进行汇编程序设计...
分类:其他   时间:2014-04-16 12:09:37    收藏:0  评论:0  赞:0  阅读:536
android—Intent发送文本email
代码如下: import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public c...
分类:移动平台   时间:2014-04-16 12:37:58    收藏:0  评论:0  赞:0  阅读:623
AnkhSvn安装及使用
一:安装          双击运行,即可;   二:使用          打开VS, File【文件】—— 点击,红色框部分, 输入服务器上的svn地址; 输入用户名和密码; 找到sln文件, 打开就可以检出工程;   更新与提交: 工具——选项——左侧的“源代码管理”——插件选项——右侧选择AnkhSVN, 下图红框选项,确定, OK。 然后,就可...
分类:其他   时间:2014-04-16 15:03:25    收藏:0  评论:0  赞:0  阅读:349
SwitchButton 开关按钮 的多种实现方式 (附源码DEMO)
刚开始接触开关样式的按钮是在IOS系统上面,它的切换以及滑动十分帅气,深入人心。 所谓的开关按钮,就是只有2个状态:on和off,下图就是系统IOS 7上开关按钮效果。 起初我在android上我只会使用CheckBox去满足对应的功能。后来,查看开发文档发现,android也有了自己的原生态开关控件,并且在4.0版本中又优化加入了新的类似控件--Switch控件,以及使用起来十分简单的T...
分类:其他   时间:2014-04-16 15:30:46    收藏:0  评论:0  赞:0  阅读:563
HDU2918:Tobo or not Tobo(IDA)
Problem Description The game of Tobo is played on a plastic board designed into a 3 × 3 grid with cells numbered from 1 to 9 as shown in figure (a). The grid has four dials (labeled ``A" to ``D" in t...
分类:其他   时间:2014-04-16 12:38:19    收藏:0  评论:0  赞:0  阅读:641
几行代码入门JDBC
本着实用性的原创,去除JDBC一些深入的东西。只是为了一个很好复习和或者入门,一个总结。 public class TestJDBC { private static Connection connection = null; public static void main(String[] args) throws ClassNotFoundException, SQLExce...
分类:数据库技术   时间:2014-04-16 15:12:03    收藏:0  评论:0  赞:0  阅读:567
HDU-1016-Prime Ring Problem
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1016 入门级深搜问题,套用模板即可。 代码如下: #include #include #include #include using namespace std; int n; int a[21]; int vis[21]; int check(int x)//检查两数之和是否为...
分类:其他   时间:2014-04-16 15:56:40    收藏:0  评论:0  赞:0  阅读:461
腾讯web前端实习一面
参加了笔试后已经感觉要跪了,让一个搞前端的去做C++,整份卷子就一道JS选择题,还差点做错了。昨天大家陆续收到通知,等到晚上手机依然没有动静,在挣扎着要不要去霸面的时候,23:20左右,来了一封邮件,让去面试。半夜11点半,让第二天早上去面试,这下是真的跪了,简历都没打出来。赶紧各种准备,看JS,看CSS,所有关于前端的,能浏览多少算多少了。 早上起来打了简历就往华工出发。到了酒店,排队签到,拿...
分类:Web开发   时间:2014-04-16 15:12:22    收藏:0  评论:0  赞:0  阅读:579
HDU 2132 An easy problem
Problem Description We once did a lot of recursional problem . I think some of them is easy for you and some if hard for you. Now there is a very easy problem . I think you can AC it.   We ca...
分类:其他   时间:2014-04-16 15:12:40    收藏:0  评论:0  赞:0  阅读:391
八周 项目2 Time类中的运算符重载
/* *程序的版权和版本声明部分: *Copyright(c)2014,烟台大学计算机学院学生 *All rights reserved. *文件名称: *作者:赵加响 *完成日期:2014 年 4月 15 日 *版本号:v1.0 *对任务及求解方法的描述部分: *输入描述:无 *问题描述: *程序输出: *问题分析: *算法设计: */ #include us...
分类:其他   时间:2014-04-16 15:44:37    收藏:0  评论:0  赞:0  阅读:495
jz2440裸板开发之GPIO:实现流水灯
arm9裸板开发的学习...
分类:其他   时间:2014-04-16 14:35:24    收藏:0  评论:0  赞:0  阅读:483
985条   上一页 1 ... 23 24 25 26 27 ... 50 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!