E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
whi
vc 10进制与2 8 16进制相互转换
s2[100]; //存2进制 char s8[100];//存8进制 char s10[100];//存10进制 char s16[100];//存16进制
whi
·
2015-11-12 22:07
转换
HDU 2317 Nasty Hacks
#include <stdio.h> int main() { int n,r,e,c,f; scanf("%d",&n);
whi
·
2015-11-12 21:41
hack
清空目录
*",DirName); BOOL IsFinded=(BOOL)tempFind.FindFile(tempFileFind);
whi
·
2015-11-12 21:42
目录
HDU 2178 猜数字
cstdio> #include <cmath> int main() { int t; scanf("%d",&t);
whi
·
2015-11-12 20:20
HDU
异常: NAMESPACE_ERR: An attempt is made to create or change an object in a way
whi
异常:NAMESPACE_ERR: An attempt is made to create or change an object in a way
whi
---- 这是我自己写客户端调用webservice
·
2015-11-12 19:35
webservice
css之自动换行
)元素拥有默认的white-space:normal,当定义的宽度之后自动换行html<div id="wrap">正常文字的换行(亚洲文字和非亚洲文字)元素拥有默认的
whi
·
2015-11-12 18:21
自动换行
SPOJ COT3 Combat on a tree(Trie树、线段树的合并)
They take turns to do the following operation:Choose a
whi
·
2015-11-12 17:40
tree
css之自动换行-设计师零张
)元素拥有默认的white-space:normal,当定义的宽度之后自动换行html<div id="wrap">正常文字的换行(亚洲文字和非亚洲文字)元素拥有默认的
whi
·
2015-11-12 17:33
自动换行
CSS中的文本属性
文本属性(Text)CSS 字体属性(Font) CSS3新增属性 文本阴影:text-shadow 文本溢出:text-overflow 这个属性一般需要配合overflow:hidden和
whi
·
2015-11-12 13:05
css
HDU 3336 Count the string
int next[200005],M,f[200005]; const int MOD=10007; int getnext(){ int i=1,j=0;next[1]=0;
whi
·
2015-11-12 12:09
String
检测文件是否有bom头 - PHP
//以下不用改动 if ($dh = opendir($basedir)) {
whi
·
2015-11-12 10:19
PHP
与基于 WEB 的版本库浏览器集成
To do this, you have to define some properties
whi
·
2015-11-12 09:15
Web
nyoj 找球号(三) 528 (位运算&&set)
第一行是一个整数N(0 #include intmain() { intn,i,m;
whi
yanghui07216
·
2015-11-11 19:00
poj2608---几个字母映射到同一个数字
0,1,2,3,0,1,2,0,0,2,2,4,5,5,0,1,2,6,2,3,0,1,0,2,0,2}; int main() { char str[20]; int i;
whi
·
2015-11-11 19:26
poj
自己写的猴子选大王
i <= 30; i++) a[i-1] = i; int num = 30, j= 0; int *current = a;
whi
·
2015-11-11 18:06
写
AJAX Control Toolkit - DropDown
Label or TextBox) <补充一点:TargetControl的文本是不能改变的> DropDownControlID - The ID of the control
whi
·
2015-11-11 17:12
Ajax
UVA 10066 - The Twin Towers(最长公共子序)
p[101][101]; 4 int str1[101],str2[101]; 5 int main() 6 { 7 int i,j,n,m,num = 0; 8
whi
·
2015-11-11 10:43
uva
hdu 1250(java大数)
static void main(String args[]) { Scanner cin = new Scanner(System.in); int n;
whi
·
2015-11-11 05:28
java
hdu 1222(数论)
gcd(b, a%b) : a;}int main() { int t; scanf ("%d", &t);
whi
·
2015-11-11 05:21
HDU
旋转卡壳部分模板
int q = 1; int ans = 0; ch[n] = ch[0]; for(int i = 0 ; i < n; i++) {
whi
·
2015-11-11 05:55
模板
Web Dynpro for ABAP: creating Dynamic UI Elements and Context: Step by Step
20step%20by%20step.mht In this step-by-step procedure you will create a simple Web Dynpro component,
whi
·
2015-11-11 04:55
element
quick sort
int l, int r ) { int val,ml, mr, tmp; val = p[l]; ml=l+1; mr=r; ///
whi
·
2015-11-11 02:41
sort
poj 3080 PKU 3080 Blue Jeans(kmp)
][N]; void get_next(char *str,int len) { next[0]=-1; int j=0,k=-1;//k记录next[];
whi
·
2015-11-11 01:15
poj
Js-----var x, this.x, x....inheritance
The execution context represents the environment in
whi
·
2015-11-11 01:05
inheritance
LeetCode3-Longest Substring Without Repeating Characters
example, the longest substring without repeating letters for "abcabcbb" is "abc",
whi
·
2015-11-11 00:51
substring
交换变量值的5种方法
typeof(a) c; \ 6 c = a; \ 7 a = b; \ 8 b = c; \ 9 }
whi
·
2015-11-10 23:05
方法
c语言中统计二进制位中1的个数的算法优化
进行模2除2一位一位的统计 { count++; } m /= 2; } } 或者下面这种位于运算的 int two(int m) { int count = 0;
whi
ali_51C
·
2015-11-09 19:46
统计二进制中1的个数
数据库删除
20)) FROM MASTER..SYSPROCESSES WHERE DBID=DB_ID(N'Test') OPEN #TB FETCH NEXT FROM #TB INTO @SPID
WHI
·
2015-11-09 13:49
数据库
RQNOJ 153数的计算(简单dfs)
dfs(int n) { for (int i=1; i<=n/2; ++i) { ++ans; dfs(i); } } int main() { int n;
whi
·
2015-11-08 15:21
DFS
反转链表——临时变量的妙用
Node *next; Node(int data, Node *next): data(data), next(next){} }; void print(Node *tmp){
whi
·
2015-11-08 13:38
链表
c 统计字符串中字符出现的个数
stdio.h> 2 3 void calCount(char arr[]) 4 { 5 int i,j,count,had; 6 i = j = count = had = 0; 7
whi
·
2015-11-08 13:48
字符串
css控制字数(控制宽度)
quot;> .dd { border: solid 1px gray; width:130px; overflow: hidden; text-overflow: ellipsis;
whi
·
2015-11-08 11:41
css
Why do some SQL strings have an 'N' prefix?
Whi
·
2015-11-08 10:27
String
Enter=click();
event.keyCode : e.
whi
·
2015-11-07 13:34
click
hbase源码学习.ExecutorService
executorMap of <name, Executor> inside ExecutorService recording the mapping from name to executor ,
whi
·
2015-11-07 12:38
executorService
poj1012
2, 7, 5, 30, 169, 441, 1872, 7632, 1740, 93313, 459901, 1358657, 2504881}, n; int main() {
whi
·
2015-11-06 08:11
poj
C语言--左旋字符串中的K个字符
include void reserve(char* str, int len) { assert(str); char* start = str; char* end = str + len - 1;
whi
伯爵213
·
2015-11-04 16:32
左旋字符串
Understanding System.Messaging
functionality in .NET Compact Framework 2.0, it wraps a technology called Microsoft Message Queuing (MSMQ),
whi
·
2015-11-03 21:43
System
在Infopath中用C#创建复合控件
Or you may have a predefined complex UI,
whi
·
2015-11-02 14:48
Path
巧用代码追女程序员之一:第一封信
You and me : void Init() {
Whi
·
2015-11-02 13:35
程序员
ASP.NET Tip: Using RadioButton Controls in a Repeater
However, it does have a few downsides in terms of
whi
·
2015-11-02 11:34
RadioButton
When to use NSInteger vs int?
architecture your code might run on, so you may for some reason want the largest possible int type,
whi
·
2015-11-01 15:20
Integer
Visual MODFLOW4.1中文破解版
1、软件简介
WHI
Visual MODFLOW 是3D地下水流及杂质传递模型软件,包括MODFLOW-2000, MODPATH
·
2015-11-01 10:25
vi
break 和 continue
在for、
whi
·
2015-11-01 10:27
continue
PHP的流程控制结构
php $i = 0;
whi
·
2015-10-31 15:30
流程控制
The Android ION memory allocator
The merging of these drivers, one of
whi
·
2015-10-31 11:47
android
字符串之strstr
using namespace std; char *_strstr(const char *str1,const char *str2) { int n; if (*str2) {
whi
·
2015-10-31 11:42
字符串
css之自动换行
)元素拥有默认的white-space:normal,当定义的宽度之后自动换行html<div id="wrap">正常文字的换行(亚洲文字和非亚洲文字)元素拥有默认的
whi
·
2015-10-31 10:54
自动换行
top 10 js mvc
www.iteye.com/news/25142 http://www.zhihu.com/question/20295071 http://www.cnblogs.com/
whi
·
2015-10-31 10:23
mvc
常用的性能计数器
request in the application pool queue, the request is sent to the Internet Server API (ISAPI) handler,
whi
·
2015-10-31 10:48
性能
上一页
16
17
18
19
20
21
22
23
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他