码迷,mamicode.com
首页 >  
搜索关键字:using password: yes    ( 53562个结果
Tcpdump usage examples
In most cases you will need root permission to be able to capture packets on an interface. Using tcpdump (with root) to capture the packets and saving...
分类:其他好文   时间:2014-06-15 06:51:22    阅读次数:178
子窗体控制父窗体的内容
//父窗体using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.T...
分类:Windows程序   时间:2014-06-15 06:04:18    阅读次数:366
python getattr()
About getattrPython’s getattr function is used to fetch an attribute from an object, using a string object instead of an identifier to identify the at...
分类:编程语言   时间:2014-06-15 00:26:18    阅读次数:487
poj2524(简单并查集)
#include #include #include #include using namespace std;int n,m;int bin[50001];int findx(int x){ int r=x; while(r!=bin[r]) r=bin[r]; int j=x,k; while(...
分类:其他好文   时间:2014-06-15 00:17:10    阅读次数:323
winfrom 圆角panel
首先后台添加命名空间using System.Drawing.Drawing2D;后台代码namespace Report.Web{ public partial class RoundPanel : Panel { private int mMatrixRound = 8...
分类:Windows程序   时间:2014-06-14 23:50:30    阅读次数:471
Codeforces Round #249 (Div. 2) A. Black Square
水题#include #include #include using namespace std;int main(){ vector a(4); cin >> a[0] >> a[1]>>a[2]>>a[3]; string str; cin >> str; int res = 0; for(in...
分类:其他好文   时间:2014-06-14 23:00:14    阅读次数:249
Codeforces Round #247 (Div. 2) B - Shower Line
模拟即可#include #include #include using namespace std;int main(){ vector a(5); for(int i = 0; i > g[i][j]; } } int maxHappiness = 0; ...
分类:其他好文   时间:2014-06-14 22:57:10    阅读次数:207
自定义 匹配文本框
using System;using System.Collections.Generic;using System.Linq;using System.Net;using...
分类:其他好文   时间:2014-06-14 21:37:08    阅读次数:262
表达式建树
//用数组实现树 1 #include 2 #include 3 #include 4 #define N 10000 5 #define optd 1 6 #define optr 2 7 using namespace std; 8 int treeL[N], treeR[N]; 9 cla.....
分类:其他好文   时间:2014-06-14 21:29:55    阅读次数:264
Codeforces Round #245 (Div. 2) A - Points and Segments (easy)
水到家了#include #include #include using namespace std;struct Point{ int index, pos; Point(int index_ = 0, int pos_ = 0){ index = index_; ...
分类:其他好文   时间:2014-06-14 21:21:40    阅读次数:281
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!