码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
Selenium-Waits
These days most of the web apps are using AJAX techniques. When a page is loaded to browser, the elements within that page may load at different time ...
分类:其他好文   时间:2015-05-03 11:56:12    阅读次数:143
selenium-Getting Started
1.1. Simple UsageIf you have installed Selenium Python bindings, you can start using it from Python like this.from selenium import webdriverfrom selen...
分类:其他好文   时间:2015-05-03 11:50:36    阅读次数:179
模板 线段相交
【模板】线段相交 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 struct point 7 { 8 double x,y; 9 };10 point a[105][2];//a[i][0]代...
分类:其他好文   时间:2015-05-03 11:49:49    阅读次数:167
Skyline中使用AxTE3DWindowEx打开新的一个球体
在winform窗体中拖入AxTE3DWindowEx控件。using system;using system.Collections.Generic;using System.Drawing;using System.Data;using System.Linq;using System.Text...
分类:Windows程序   时间:2015-05-03 11:49:10    阅读次数:368
C++初始化列表的成员初始化顺序
结论:1)与变量的声明顺序有关2)与初始化的参数顺序有关例子: 1 #include 2 using namespace std; 3 class DD 4 { 5 public: 6 DD(int d) //DD中定义了有参构造函数 7 { 8 cout<<d<<...
分类:编程语言   时间:2015-05-03 11:46:24    阅读次数:123
模板 最长递增子序列
【模板】最长递增子序列一般情况: 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int a[1005],dp[1005],n; 7 8 int LIS() 9 {10 int i,j,ans,m;11 ...
分类:其他好文   时间:2015-05-03 10:33:17    阅读次数:100
模板 最长公共递增子序列
【模板】最长递增公共子序列二维 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int n,m,a[505],b[505],dp[505][505]; 7 8 int LICS() 9 {10 int MAX,...
分类:其他好文   时间:2015-05-03 10:31:52    阅读次数:112
模板 最长公共子序列
【模板】最长公共子序列 1 #include 2 #include 3 #include 4 using namespace std; 5 6 char s1[1000],s2[1000]; 7 int len1,len2,dp[1000][1000],mark[1000][1000];//...
分类:其他好文   时间:2015-05-03 10:28:05    阅读次数:137
模板 BFS
【模板】BFS 1 #include 2 #include 3 #include 4 using namespace std; 5 6 struct node 7 { 8 int x,y,step; 9 };10 11 char map[105][105];12 int vis[10...
分类:其他好文   时间:2015-05-03 10:27:29    阅读次数:78
HDU 1754 I Hate It
线段树水题,复习一下线段树 #include #include #include using namespace std; #define N 200005 struct Node{ int l,r,num,ma; }node[N*4]; void build(int p,int l,int r){ node[p].l=l; node[p].r=r; node[p].num=0; no...
分类:其他好文   时间:2015-05-03 09:25:00    阅读次数:124
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!