码迷,mamicode.com
首页 >  
搜索关键字:selection    ( 1319个结果
如何获取选定部分的HTML
其实这个程序很简单,首先是如何获取选定部分的HTML,还记得这段吗: HTMLDoc := WebBrowser1.Document as IHTMLDocument2; SelectRange := HTMLDoc.selection.createRange() as IHTMLTxtRange;...
分类:Web程序   时间:2015-05-29 11:26:57    阅读次数:141
Sicily 14515. Cookie Selection
Sicily 14515. Cookie Selection题目思路用两个堆来放全部数就好了; 每个堆放一半; 题目说得这么长几个意思- -。代码#include #include #include #include using namespace std;int main() { priority_queue...
分类:其他好文   时间:2015-05-26 09:15:21    阅读次数:127
55种开源数据可视化工具简介
工欲善其事必先利其器,本文对55个流行的数据可视化工具开源协议,主页,文档,案例等资源的进行简单介绍,其中包括著名的D3.js,R,Gephi,Raphaël,Processing.js,Tableau Public,Google Chart Tools,Arbor.js等,资料来源http://selection.datavisualization.ch/ 1 Arbor.js ...
分类:其他好文   时间:2015-05-21 10:52:17    阅读次数:265
从VBA到Delphi
我一般用OLE方式处理office系列的数据。一、定义 WordApp: variant; CurrDoc: variant; Selection: variant;二、初始化WordApp.Visible := true; CurrDoc := WordApp.documents...
分类:编程语言   时间:2015-05-14 13:32:09    阅读次数:222
视频跟踪论文读后感系列二:Online Selection Of Discriminative Tracking Features(PAMI2005)
Abstract This paper presents an online feature selection mechanism for evaluating multiple features while tracking and adjusting the set of features used to improve tracking performance. Our hypothes...
分类:其他好文   时间:2015-05-13 13:02:24    阅读次数:216
优化算法——遗传算法
与遗传算法的第一次接触 遗传算法的基本概念 基本定义 遗传算法的基本流程 遗传算法过程中的具体操作 参数的编码 二进制编码 Gray编码 实数编码 有序编码 初始群体的设定 适应度函数的计算 遗传操作设计 选择selection 交叉crossover 变异mutation 控制参数的设定 求解优化问题的实例 问题描述 问题分析 算法设计 个体编码 适应值函数 选择策略 杂交算子 变异算子 参数设置...
分类:编程语言   时间:2015-05-10 17:18:19    阅读次数:285
::selection
改变浏览器文字选中背景::selectionCSS的伪类选择器只有一小部分CSS属性可以用于::selection选择器:color,background-color,cursor,outline,text-decoration,text-emphasis-color和text-shadow。要特别...
分类:其他好文   时间:2015-05-04 13:40:56    阅读次数:136
正则表达式匹配末尾数字并+1后替换
在做unity3d的一个增强工具,用到了下有需要的朋友凑合看,go.name是string类型go.name = Selection.activeGameObject.name;Regex rex = new Regex(@"\d", RegexOptions.RightToLeft);var re...
分类:其他好文   时间:2015-04-29 16:32:04    阅读次数:229
Selenium2Library系列 keywords 之 _SelectElementKeywords 之 list_selection_should_be(self, locator, *items)
1 def list_selection_should_be(self, locator, *items): 2 """Verifies the selection of select list identified by `locator` is exactly `*it...
分类:其他好文   时间:2015-04-29 00:22:43    阅读次数:260
秒懂插入排序与选择排序
插入排序原理:它的工作原理是通过构建有序序列,对于未排序数据,在已排序序列中从后向前扫描,找到相应位置并插入。 插入排序核心:假设第一个元素排好,之后的元素对排好的部分从后向前比较并逐一移动。 插入排序实现: void insertion_sort(int a[], int n) { int i,j,tmp; for (i = 1; i < n; i++) { tmp = a[i...
分类:编程语言   时间:2015-04-28 18:23:49    阅读次数:133
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!