首页 > 其他
Linux getopt()函数 getopt_long()函数---转
http://hi.baidu.com/scoundrelgg/item/d4083f8412eea05d26ebd97fLinux getopt()函数 getopt_long()函数get_opt()函数:函数原型::#include int getopt(int argc, char * co...
分类:其他   时间:2014-02-11 20:31:15    收藏:0  评论:0  赞:0  阅读:324
sdram控制器
http://pan.baidu.com/s/1jG5bIMM我采用参数化,和模块化设计,可以直接仿真。不懂的可以加我qq 1051603530 注明 博客园
分类:其他   时间:2014-02-11 20:28:42    收藏:0  评论:0  赞:0  阅读:266
POJ 2195 Going Home(最小费用最大流)
http://poj.org/problem?id=2195题意 : N*M的点阵中,有N个人,N个房子。让x个人走到这x个房子中,只能上下左右走,每个人每走一步就花1美元,问当所有的人都归位了之后,需要花多少美元。思路 :最小费用最大流。把人作为一个顶点集合U,房子作为另一个顶点集合V,把U中所有...
分类:其他   时间:2014-02-11 20:22:45    收藏:0  评论:0  赞:0  阅读:346
Unity3D C#脚本开发学习
1. Inherit from MonoBehaviour,All behaviour scripts must inherit from MonoBehaviour (directly or indirectly). This happens automatically in Javascript...
分类:其他   时间:2014-02-11 20:16:48    收藏:0  评论:0  赞:0  阅读:450
(Problem 6)Sum square difference
Hence the difference between the sum of the squares of the first ten natural numbers and the square of the sum is 3025385 = 2640.Find the difference b...
分类:其他   时间:2014-02-11 20:15:57    收藏:0  评论:0  赞:0  阅读:292
黑马程序员-- 函数和递归
---------------------- ASP.Net+Android+IOS开发、.Net培训、期待与您交流! ----------------------函数和递归1数学函数1简单函数的编写下面给出一个计算两点欧几里德距离的函数:doubledist(doublex1,doubley1,d...
分类:其他   时间:2014-02-11 20:13:24    收藏:0  评论:0  赞:0  阅读:469
Error 1937.An error occurred during the installation of assembly...
工具:Installshield 2008任务: 1. 创建一个 Merge Module 工程, 在 Merge Module 中包含若干 dll, 在安装过程中,dll 会被安装到指定路径。2. 创建一个 MSI 工程,将编译后的 merge module 包含到 工程当中,编译,实现 dll ...
分类:其他   时间:2014-02-11 20:10:00    收藏:0  评论:0  赞:0  阅读:421
as3组件检测函数
/** * 组件看不到?请使用本函数检测 * @param target * */ public static function componentsNotShow(target:DisplayObject):void { // 检查基本属性 if(!target.stage) {trace("没添...
分类:其他   时间:2014-02-11 20:04:54    收藏:0  评论:0  赞:0  阅读:319
Boost.Interprocess
Boost.Interprocess只需要引入头文件就可以使用,常用的包括:1.普通共享内存#include #include 2.消息队列#include 参考:http://www.ibm.com/developerworks/cn/aix/library/au-concurrent_boost...
分类:其他   时间:2014-02-11 20:01:30    收藏:0  评论:0  赞:0  阅读:601
在IIS上启用Gzip压缩(HTTP压缩)
一.摘要本文总结了如何为使用IIS托管的网站启用Gzip压缩, 从而减少网页网络传输大小, 提高用户显示页面的速度.二.前言.本文的知识点是从互联网收集整理, 主要来源于中文wiki. 使用YSlow检测网站启用了哪些优化时, Gzip是十分关键的一项. 启动Gip压缩将立竿见影的减少页面的网络传输...
分类:其他   时间:2014-02-11 19:56:24    收藏:0  评论:0  赞:0  阅读:437
Java程序中构造函数,重载
Java代码 class Tree { int height; Tree() { print("Planting a seedling"); height = 0; } Tree(int i) { print("Creating new Tree that is "+ i + " feet tall...
分类:其他   时间:2014-02-11 19:55:33    收藏:0  评论:0  赞:0  阅读:383
Lib文件解析
摘自:http://bbs.csdn.net/topics/330266854 lib就是obj文件打包起来的,可以用lib.exe解出来,下面是vc环境下的操作,其他环境,看命令行帮助就可以了。lib/listxx.lib列出lib里所有obj文件名,我这里如下。。。。。很多省略lib/err/e...
分类:其他   时间:2014-02-11 19:51:18    收藏:0  评论:0  赞:0  阅读:464
黑马程序员-异常介绍与处理
---------------------- ASP.Net+Android+IOS开发、.Net培训、期待与您交流! ---------------------- 1、 什么是异常?1、程序运行时发生的错误。(错误的出现并不总是程序员的原因,有时应用程序会因为最终用户或运行代码的环境改变而发生错误...
分类:其他   时间:2014-02-11 19:48:45    收藏:0  评论:0  赞:0  阅读:392
ASCII码表
1. ASCII码
分类:其他   时间:2014-02-11 19:47:54    收藏:0  评论:0  赞:0  阅读:301
(Problem 5)Smallest multiple
2520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.What is the smallest positive number that is...
分类:其他   时间:2014-02-11 19:47:03    收藏:0  评论:0  赞:0  阅读:378
(Problem 3)Largest prime factor
The prime factors of 13195 are 5, 7, 13 and 29.What is the largest prime factor of the number 600851475143 ?#include#include#include#include#include#i...
分类:其他   时间:2014-02-11 19:46:12    收藏:0  评论:0  赞:0  阅读:407
Java学习笔记(五)——google java编程风格指南(中)
如果你想要学习关于编码风格方面的知识,建议直接阅读参考资料中的文章,比看我这里写的好多了,这是真心话,我只是写自己的笔记。便于自己在以后的编码中注意。
分类:其他   时间:2014-02-11 19:42:47    收藏:0  评论:0  赞:0  阅读:398
全文信息检索介绍及算法分析
经典好文:http://www.vckbase.com/index.php/wv/905感谢杨老师的分享!一、摘要 本文主要介绍了全文信息检索的概念、应用领域、算法分类、技术难点和算法比较。及一款实现全文检索的数据结构和算法。二、什么是全文数据库和全文信息检索 保存在数据库中的记录数据,从类型上可以...
分类:其他   时间:2014-02-11 19:41:56    收藏:0  评论:0  赞:0  阅读:651
给font awesome中加入自定义图片
工具:http://icomoon.io 在线工具 http://www.inkscape.org/en/download/windows/ 下载安装 参考教程 http://birchenough.co.uk/edit-font-awesome-icon-add-font-awesome-font...
分类:其他   时间:2014-02-11 19:36:50    收藏:0  评论:0  赞:0  阅读:1311
NHibernate示例
NHibernate简单示例。有图、有真相、有代码
分类:其他   时间:2014-02-11 19:35:59    收藏:0  评论:0  赞:0  阅读:529
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!