首页 > 2016年05月10日 > 全部分享
html去除一些东西
...
分类:Web开发   时间:2016-05-10 20:32:32    收藏:0  评论:0  赞:0  阅读:223
LeetCode 217
Contains Duplicate Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at lea ...
分类:其他   时间:2016-05-10 20:32:14    收藏:0  评论:0  赞:0  阅读:262
软件结构图
...
分类:其他   时间:2016-05-10 20:32:03    收藏:0  评论:0  赞:0  阅读:211
Lambert/Diffuse 光照模型
Lambert/Diffuse光照模型的特点:各向同性,即与观察的方向无关,反射光只与入射光和入射角度相关。 1.光源垂直照射平面 如图,设入射光量为Ф, 平面面积为A, 则可以认为平面上每一点获取的光量为 Ф/A 2.光源斜射平面, 与平面法线N成角度θ 如图,设入射光量为Ф,光线与法线的交角为θ ...
分类:其他   时间:2016-05-10 20:31:52    收藏:0  评论:0  赞:0  阅读:283
LeetCode 344
Reverse String Write a function that takes a string as input and returns the string reversed. Example: Given s = "hello", return "olleh". ...
分类:其他   时间:2016-05-10 20:31:42    收藏:0  评论:0  赞:0  阅读:227
对kvm虚拟机恢复有用知识
qcow2 的基本原理 qcow2 镜像格式是 QEMU 模拟器支持的一种磁盘镜像。它也是可以用一个文件的形式来表示一块固定大小的块设备磁盘。与普通的 raw 格式的镜像相比,有以下特性: 更小的空间占用,即使文件系统不支持空洞(holes); 支持写时拷贝(COW, copy-on-write), ...
分类:其他   时间:2016-05-10 20:31:32    收藏:0  评论:0  赞:0  阅读:230
poj1984 带权并查集(向量处理)
Navigation Nightmare Time Limit: 2000MS Memory Limit: 30000K Total Submissions: 5939 Accepted: 2102 Case Time Limit: 1000MS Description Farmer John's ...
分类:其他   时间:2016-05-10 20:31:22    收藏:0  评论:0  赞:0  阅读:357
C# 调用webapi
HttpClient 是个很好用的工具。 这个是post请求的方法。 get、put、delete 都类似。 ...
分类:Windows开发   时间:2016-05-10 20:31:02    收藏:0  评论:0  赞:0  阅读:392
iOS状态栏颜色
下面截图给出修改 iOS 状态栏颜色的 4 种方式 Target.png Target.png Info.plist.png Info.plist.png Storyboard.png Storyboard.png code.png code.png 其中第四张图中的代码,直接写在你的任何一个 Vi ...
分类:移动平台   时间:2016-05-10 20:30:52    收藏:0  评论:0  赞:0  阅读:355
团队项目——地铁信息查询路程规划模块初步设计
基本的数据结构为无向图。但是考虑到地铁站太多,如果把地铁站都作为此无向图中的顶点,生成的图太过复杂,这样生成最短路径算法效率肯定也不高。所以我们的思路是无向图中只保留换乘站,而两个换乘站之间的普通车站就退化成边。 基于这个思路,设计的数据结构为 其中换乘站和普通站的数据结构相同,都是如下结构体 st ...
分类:其他   时间:2016-05-10 20:30:42    收藏:0  评论:0  赞:0  阅读:214
LeetCode 169
Majority Element Given an array of size n, find the majority element. The majority element is the element that appears more than ? n/2 ? times. You ma ...
分类:其他   时间:2016-05-10 20:30:34    收藏:0  评论:0  赞:0  阅读:223
js获取网页高度和宽度(备份)
网页可见区域宽: document.body.clientWidth网页可见区域高: document.body.clientHeight网页可见区域宽: document.body.offsetWidth (包括边线的宽)网页可见区域高: document.body.offsetHeight (包 ...
分类:Web开发   时间:2016-05-10 20:30:22    收藏:0  评论:0  赞:0  阅读:223
POJ3164 Command Network 最小树形图
最小树形图,就是给有向带权图中指定一个特殊的点root,求一棵以root为根的有向生成树T,并且T中所有边的总权值最小。 朱刘算法模板题 #include <iostream> #include <algorithm> #include <cstdio> #include <cstdlib> #in ...
分类:Web开发   时间:2016-05-10 20:30:14    收藏:0  评论:0  赞:0  阅读:363
HttpServlet 详解(注!仿)
Servlet的框架是由两个Java包组成:javax.servlet和javax.servlet.http. 在javax.servlet包中定义了所有的Servlet类都必须实现或扩展的的通用接口和类.在javax.servlet.http包中定义了采用HTTP通信协议的HttpServlet类 ...
分类:Web开发   时间:2016-05-10 20:30:02    收藏:0  评论:0  赞:0  阅读:170
验证码
Login.aspx代码 CheckCode.aspx代码 CheckCode.aspx.cs代码 点击验证码更换验证码:Login.aspx代码 ...
分类:其他   时间:2016-05-10 20:29:52    收藏:0  评论:0  赞:0  阅读:199
HDU 2546 饭卡 (01背包)
分析:为了得到最优解,从m中取出5来买最贵的。 ...
分类:其他   时间:2016-05-10 20:29:32    收藏:0  评论:0  赞:0  阅读:122
Android 进度条
...
分类:移动平台   时间:2016-05-10 20:29:12    收藏:0  评论:0  赞:0  阅读:358
LeetCode 171
Excel Sheet Column Number Related to question Excel Sheet Column Title Given a column title as appear in an Excel sheet, return its corresponding colu ...
分类:其他   时间:2016-05-10 20:29:02    收藏:0  评论:0  赞:0  阅读:247
LeetCode 231
Power of Two Given an integer, write a function to determine if it is a power of two. ...
分类:其他   时间:2016-05-10 20:28:52    收藏:0  评论:0  赞:0  阅读:171
[野狐行][内存辅助][二重门更新中][2016/05/10]
大家好,我是野狐行,大家好久不见了。 一重门公开课已经全部更新完毕,现在开始更新二重门公开课(1)显示层-客户端与辅助界面 1.内存辅助界面的一个实例 2.按钮之实现自动启动,自动关机 3.单选框之实现起号脚本设置 4.复选框之实现设置挂机选项 下载地址:http://www.zidongyouxi ...
分类:其他   时间:2016-05-10 20:28:42    收藏:0  评论:0  赞:0  阅读:236
1379条   上一页 1 ... 15 16 17 18 19 ... 69 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!