#include<iostream>using namespace std;class lilang{ public: lilang(){ b1=0;c1=0; b2=0;c2=0; b3=0;c3=0; b4=0;c4=0; b5=0;c5=0; b6=0;c6=0; b7=0;c7=0; b8= ...
分类:
其他好文 时间:
2016-04-05 19:11:30
阅读次数:
121
项目根目录下data.txt abc,123643789344 cde,456455611122 qqq,233358655555 eeeeee,326235555555 Data.cs using System; using System.Collections.Generic; using Sy... ...
分类:
其他好文 时间:
2016-04-05 17:40:09
阅读次数:
183
Kruskal。。。 1 #include <iostream> 2 #include <cstdio> 3 #include <algorithm> 4 #define N 10010 5 #define M 100010 6 #define inf 0x7fffffff 7 using name ...
分类:
其他好文 时间:
2016-04-05 15:35:14
阅读次数:
155
第一题 我的答案 using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication8{ class Program { static void ...
分类:
其他好文 时间:
2016-04-05 14:06:43
阅读次数:
109
原文don’t use @import Using @import within a stylesheet adds one more roundtrip to the overall download time of the page. Using @import in IE causes the ...
分类:
其他好文 时间:
2016-04-05 12:39:58
阅读次数:
150
// 集训最终開始了。来到水题先 #include <cstdio> #include <cstring> #include <algorithm> #include <iostream> using namespace std; int a[23]; int d[23][100000]; int ...
分类:
其他好文 时间:
2016-04-05 12:10:38
阅读次数:
109
问题:遇到mysql启动提示accessdeniedforuserroot@localhost(usingpassword:YES)1、检查密码有无错误,如果无就是权限问题。2、打开SQL的图形工具,输入以下命令行grantallprivilegeson*.*to‘root‘@‘localhost‘identifiedby‘你的密码‘withgrantoption;
flushprivileges;3、在本..
分类:
数据库 时间:
2016-04-05 10:59:06
阅读次数:
225
E.g I want match the keword "3398" after "red" from the string "This is red with number 3398". Using non-capturing group regex will help me sovle this ...
代理, 将方法作为另一方法的参数. 类似C里面的函数指针. using System; using System.Windows.Forms; using System.Threading; namespace Demo { public delegate void Greeting(string ... ...
分类:
其他好文 时间:
2016-04-05 02:07:53
阅读次数:
199
#include<iostream>#include<cstdlib>using namespace std;void SelectSort(int *a, int n) { int min; for (int i = 0; i < n - 1; i++) { min = i; for (int j ...
分类:
编程语言 时间:
2016-04-05 01:55:33
阅读次数:
186