首页 > 2015年08月14日 > 全部分享
使用NDK编译mono
1.下载并安装ndk   2.导出NDK目录到环境变量 export NDK=/var/data/android-ndk-r10e   3.运行NDK的工具链 $NDK/build/tools/make-standalone-toolchain.sh--platform=android-18 --install-dir=/tmp/my-android-toolchain --arch=...
分类:其他   时间:2015-08-14 17:08:55    收藏:0  评论:0  赞:0  阅读:304
windows net命令集
总结一下window系统提供的net网络配置功能,如net share和net file这些功能还是经常会用到的                                        netsh命令:配置本机ip地址...
分类:Windows开发   时间:2015-08-14 17:08:45    收藏:0  评论:0  赞:0  阅读:190
静态库和动态库
静态库 .a   ->静态库    -》编译时连接的库,编译代码的时候就会把库的二进制导入编译到程序中 .dylib —》动态库 -》运行程序的时候,当调用相关函数 才会连接动态库, .framework-》既可以是静态库也可以是动态的 1.库的功能—》1.不暴漏源码(对一大堆源码封装成二进制)2.使用简单,只需要导入库和头文件就可以使用 2.怎么制作 3.怎么使用 ...
分类:其他   时间:2015-08-14 17:08:35    收藏:0  评论:0  赞:0  阅读:98
两个栈实现一个队列
两个栈实现一个队列 三种思路你是否都能想到...
分类:其他   时间:2015-08-14 17:08:15    收藏:0  评论:0  赞:0  阅读:95
在eclipse中集成HTTL到Struts2
HTTL是什么? HTTL (Hyper-Text Template Language) 是一个高性能的开源JAVA模板引擎, 适用于动态HTML页面输出, 可替代JSP页面, 指令和Velocity相似。 HTTL官网: http://httl.github.io/zh/ 这里介绍的背景是基于Struts2和HTTL开发一个J2EE简单示例:其中后台逻辑代码用Stru...
分类:系统服务   时间:2015-08-14 17:08:05    收藏:0  评论:0  赞:0  阅读:732
前端设计之CSS布局:上中下三栏自适应高度CSS布局
网页代码: CSS布局:上中下三栏自适应高度CSS布局 *{margin:0;padding:0;} body, html { margin: 0; padding:0 !important; padding:90px 0 32px 0; width:100%; height:100%; overflow:hidden; } .header { background...
分类:Web开发   时间:2015-08-14 17:07:55    收藏:0  评论:0  赞:0  阅读:374
MongoDB之索引
本文介绍了MongoDB中索引的用法,对创建索引,删除索引有详细的介绍...
分类:数据库技术   时间:2015-08-14 17:07:45    收藏:0  评论:0  赞:0  阅读:148
HDU2094:产生冠军
产生冠军 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 11500    Accepted Submission(s): 5334 Problem Description 有一群人,打乒乓球比赛,两两捉对撕杀,每两个人之...
分类:其他   时间:2015-08-14 17:07:35    收藏:0  评论:0  赞:0  阅读:148
数据类型的理解
#include #include #include using namespace std; int main() { int a; //编译器分配 4个字节的空间 int b[10]; ////编译器分配 40个字节的空间 int *p; a = 10; printf("%d\n\n", &a); //275223 *((int*)...
分类:其他   时间:2015-08-14 17:07:25    收藏:0  评论:0  赞:0  阅读:108
KVC和KVO
KVC kvc(key-value-coding,键值编码)   为属性赋值:  value为属性的值  forKey:属性的名称 kvc 为OC语言动态运行时机制的一种体现,任何NSObject类型的对象都支持kvc kvo(键值观察)(key-value-observer) :对符合kvc键值编码的变量的观察,主要对变量赋值操作的观察 [_model addObserv...
分类:其他   时间:2015-08-14 17:07:15    收藏:0  评论:0  赞:0  阅读:89
BZOJ1024
传送门:BZOJ1024首先注意到以下事实:每一刀必然割在kn处,其中k∈N+\frac {k} {n}处,其中k\in \mathbb N^+然后就可以深搜了。代码上的小细节见下。#include #include #include #include #include #include <iostre...
分类:其他   时间:2015-08-14 17:07:05    收藏:0  评论:0  赞:0  阅读:180
递归反转一个栈
递归反转一个栈,要求空间复杂度为1,不许重新申请一个同样的栈...
分类:其他   时间:2015-08-14 17:06:55    收藏:0  评论:0  赞:0  阅读:120
excel 补全所有空格
首先选中 A 列,按 F5 键,再按“定位条件?”按钮,选择空值,这样就把所 有空列选中了,但是光标停留的位置是 A3 格上;   然后直接输入“ =A2 ”,再按 Ctrl +  回车 首先全选中所有列,按F5键,再按“定位条件?”按钮,选择空值,这样就把所有空列选中了, 然后直接输入“你想要替换的值”,再按Ctrl + 回车...
分类:其他   时间:2015-08-14 17:06:45    收藏:0  评论:0  赞:0  阅读:182
判断素数——Dirichlet's Theorem on Arithmetic Progressions
Description If a and d are relatively prime positive integers, the arithmetic sequence beginning with a and increasing by d, i.e., a, a + d, a + 2d, a + 3d, a + 4d, ..., contains infinitely man...
分类:其他   时间:2015-08-14 17:06:25    收藏:0  评论:0  赞:0  阅读:252
【小结】AC自动机
参考资料:http://blog.csdn.net/niushuai666/article/details/7002823 留个板子 /* ********************************************** File Name: ac_automata.cpp Auther: zhengdongjian@tju.edu.cn Created Time: 2015年08...
分类:其他   时间:2015-08-14 17:06:15    收藏:0  评论:0  赞:0  阅读:184
HDU 3469 Catching the Thief (博弈 + DP递推)
Catching the Thief Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 653    Accepted Submission(s): 359 Problem Description In the Qi...
分类:其他   时间:2015-08-14 17:06:05    收藏:0  评论:0  赞:0  阅读:199
python 之 解决中文字符异常
Python在执行过程中,常常出现不能读取中文路径名,常常是读取的路径是空路径或者直接报错(WindowsError: [Error 2]),也有时候出现不能正常输出中文字符串,编译器报错为(KeyError),往往这是编码出现了问题。这个时候往往在字符串后面添加上转码操作就可以了。 详见源码示例如下 【中文字符串】 print '品牌id'.decode('utf-8') print '\...
分类:编程语言   时间:2015-08-14 17:05:55    收藏:0  评论:0  赞:0  阅读:239
C++14系列(2):C/C++的时间函数
C++笔记开始为了好好研究下C++14,顺便复习下以前的C++知识。搞了个git(不断完善中): https://github.com/rododo/cpp14examples.git 里面会慢慢封装一些常用的函数,并做一些测试验证,工程是建立在Ubuntu的Eclipse之上,见系列(1)环境搭建。常用的时间函数参考: http://blog.chinaunix.net/uid-245178...
分类:编程语言   时间:2015-08-14 17:05:45    收藏:0  评论:0  赞:0  阅读:270
LA3987 Ladies’ Choice 婚姻稳定算法
Problem I – Ladies’ Choice Background Teenagers from the local high school have asked you to help them with the organization of next year’s Prom. The idea is to find a suitable date for everyone in...
分类:编程语言   时间:2015-08-14 17:05:35    收藏:0  评论:0  赞:0  阅读:160
原生js螺旋运动
window.onload=function(){ var oSpiral=document.getElementById('spiral'); var oUl=oSpiral.getElementsByTagName('ul')[0]; var aLi=oUl.getElementsByTagName('li'); var size=6; var len=size*size; var...
分类:Web开发   时间:2015-08-14 17:05:25    收藏:0  评论:0  赞:0  阅读:171
1886条   上一页 1 ... 36 37 38 39 40 ... 95 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!