1.【弹性盒模型Flexbox】,最大的特性在于,能够动态修改子元素的宽度和高度,以满足在不同尺寸屏幕下的恰当布局。flex-direction:row | row-reverse | column | column-reverse /*设置主轴方向,确定弹性子元素排列方式*/flex-wrap: ...
分类:
Web程序 时间:
2015-11-03 10:33:35
阅读次数:
245
题记:今天给同事讲解代理服务器和反向代理服务器时,画了张图进行说明。 代理服务器通常分为两类,即转发代理(forward proxy)服务器和反向代理(reverse proxy)服务器。转发代理服务器又通常简称为代理服务器,我们常提到的代理服务器就指的是转发代理服务器。转发代理服务器 普通的转.....
分类:
其他好文 时间:
2015-11-03 00:19:45
阅读次数:
142
#include<stdio.h>
//#include<assert.h>
voidmy_reverse(char*left,char*right)
{
//assert(left);
//assert(right);用以处理指针函数为空,保证有效
while(left<right)
{
chartmp=*left;//借助中间变量实现逆置
*left=*right;
*right=tmp;
left++;
right--;
}..
分类:
编程语言 时间:
2015-10-31 18:46:04
阅读次数:
548
#include<stdio.h>
#include<assert.h>
/*求字符串长度*/
intmy_strlen(char*str)
{
assert(str);
intcount=0;
while(*str)
{
count++;
str++;
}
returncount;
}
/*逆置函数*/
char*reverse_str(char*start,char*end)
{
char*ret=start;
chartemp;
whi..
分类:
编程语言 时间:
2015-10-31 18:43:19
阅读次数:
200
#include<stdio.h>reverse_string(charconst*str){if(*str!=‘\0‘){str++;reverse_string(str);printf("%c",*(str-1));}}intmain(){char*str="guruichun";printf("原字符串为:%s\n反向排列后为:",str);reverse_string(str);printf("\n");return0;}
分类:
其他好文 时间:
2015-10-30 19:04:44
阅读次数:
176
LeetCode -- Reverse Nodes in k-Group...
分类:
其他好文 时间:
2015-10-30 15:27:17
阅读次数:
121
#include<stdio.h>
voidmy_reverse(intlen,chararr[])
{
intleft=0;
intright=len-1;
while(left<right)
{
chartmp=arr[left];
arr[left]=arr[right];
arr[right]=tmp;
left++;
right--;
}
}
intmain()
{
chararr[]="tnedutsamai";
intlen=sizeof(arr)/sizeof(arr[0])..
分类:
编程语言 时间:
2015-10-29 18:27:28
阅读次数:
148
def reverse_str( s ): return s[::-1] def reverse_str( s ): t = '' for x in xrange(len(s)-1,-1,-1): t += s[x] return t
分类:
编程语言 时间:
2015-10-28 09:29:33
阅读次数:
171
本文介绍的严格意义来说并不能算是工具,而是提供查询功能的网站,某些网站能够提供非常好的DNS查询服务,比如查询A、MX、CNAME等记录。例如下面这个网站:http://www.dnsqueries.com/zh/reverse_lookup.php虽然网站上挂的广告比较多,但是查询的功能还是比较实用的。另外,查..
分类:
其他好文 时间:
2015-10-28 01:40:52
阅读次数:
155
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:
其他好文 时间:
2015-10-27 23:24:52
阅读次数:
184