我的memcmp: 1 int memcmp(void *buf1, void *buf2,
unsigned int count){ 2 int reval; 3 while(count && !(reval = (*(unsigned
char *)buf1) - (*(unsi...
分类:
其他好文 时间:
2014-05-01 11:16:49
阅读次数:
387
VC获取指定文件夹路径flyfish 2010-3-5一 使用Shell函数1
获取应用程序的安装路径TCHAR
buf[_MAX_PATH];SHGetSpecialFolderPath(NULL,buf,CSIDL_PROGRAM_FILES,NULL);AfxMessageBox(buf);2...
分类:
其他好文 时间:
2014-05-01 10:42:38
阅读次数:
357
telnet: 远程登录协议, 23/tcp C/S S:telnet服务器 C:telnet客户端
ssh:Secure SHell, 应用层协议,22/tcp 通信过程及认证过程是加密的, 主机认证 用户认证过程加密 ...
分类:
其他好文 时间:
2014-05-01 10:14:05
阅读次数:
324
我的strcat: 1 char *strcat(char *dest,char *src)
2 { 3 char * reval = dest; 4 while(*dest) 5 dest++; 6 while(*src) 7 *dest++...
分类:
其他好文 时间:
2014-05-01 08:59:02
阅读次数:
484
关于phpweb后台拿shell简单方法。首先登录后台admin.php登录后台管理系统后,然后把下面的文件保存为xxx.html,修改action,把www.xxx.com改成你的目标网站地址。代码文件如下:然后选择你的马儿再上传上传后如果为iis6,就点击查看源码就可以找到马儿的路径了。菜刀链接...
分类:
Web程序 时间:
2014-05-01 08:46:04
阅读次数:
453
良精南方后台简单拿shell作者:qxz_xp 发布:2013-11-02 00:51
分类:菜鸟入门,黑客技术,黑客攻防5条评论首先必须要先登入管理后台。进入后台管理后,在网站地址后面加上
admin/southidceditor/admin_style.asp 这是良精南方的远程编辑器路径。.....
分类:
其他好文 时间:
2014-05-01 08:42:50
阅读次数:
409
#include#include#includeusing namespace std;int
main(){ int n,i; char a[100000]; cin>>a; sort(a,a+strlen(a)); do{
cout<<a<<endl; }while(next_permut...
分类:
其他好文 时间:
2014-05-01 06:20:37
阅读次数:
368
1 保留小数点后两位#include cout const char * spilt="/";char
*p;p=strtok(str,spilt);while(p!=NULL){ //cout
#includesort(Rs.begin(),Rs.end());sort(Rs.begin(),Rs...
分类:
编程语言 时间:
2014-05-01 05:05:45
阅读次数:
409
用c语言实现
#include
#include
#include
using namespace std;
typedef struct node
{
char x;
struct node *next;
}chan;
chan *root = new chan;
char a[100010];
int main()
{
while(scanf("%...
分类:
编程语言 时间:
2014-04-29 13:47:20
阅读次数:
358
floyd求最短路。
注意图是有向图。。。
#include
#include
#include
using namespace std;
struct node
{
int x,y,id;
}edge[205];
int dis[205][205];
int main()
{
int c,T,n,a,b,op;
while(scanf("%d",&T...
分类:
其他好文 时间:
2014-04-29 13:21:23
阅读次数:
313