• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






dahua1

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2018年1月29日

树 entiry
摘要: #define MAX_KEY_LENGTH 15#define MAX_VALUE_LENGTH 127#define MAX_MESSAGE_LENGTH 81920 #define SIZE 400 int tree[400][400]; //使用邻接矩阵代表树 typedef struct 阅读全文
posted @ 2018-01-29 18:16 dahua1 阅读(136) 评论(0) 推荐(0)
 
文件感染
摘要: #include<stdlib.h>#include<stdio.h>typedef struct node{ int id; int fileSize; int origSize; int isFolder; struct node *parent; struct node *child; str 阅读全文
posted @ 2018-01-29 17:46 dahua1 阅读(159) 评论(0) 推荐(0)
 

2018年1月10日

build crash
摘要: #include<stdio.h>#include<stdlib.h>#pragma warning(disable:4996)typedef struct node{ int x; int y; int val;}node;int t, n, w, k;#define SIZE 100000#de 阅读全文
posted @ 2018-01-10 18:03 dahua1 阅读(138) 评论(0) 推荐(0)
 

2018年1月8日

抽取手机app的信息
摘要: package com.example.srct.service;import android.content.pm.ApplicationInfo;import android.content.pm.PackageInfo;import android.support.v7.app.AppComp 阅读全文
posted @ 2018-01-08 12:13 dahua1 阅读(276) 评论(0) 推荐(0)
 

2017年12月22日

文件感染 yyh 未完成
摘要: #include<stdlib.h>#include<stdio.h>typedef struct node{ int id; int fileSize; int origSize; struct node *parent; struct node *child; struct node *next 阅读全文
posted @ 2017-12-22 16:58 dahua1 阅读(100) 评论(0) 推荐(0)
 
文件感染
摘要: //#include "stdio.h"////#define SIZE 10000//typedef struct Node{// int id;// int filesize;// int originsize;// int isfolder;// Node *child;// Node *pa 阅读全文
posted @ 2017-12-22 16:56 dahua1 阅读(230) 评论(0) 推荐(0)
 

2017年12月20日

大飞哥 第一次考试模拟
摘要: #define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<malloc.h> #define MAXSIZE 100000 typedef struct Node{ char id[19]; char name[24]; Node* prev; 阅读全文
posted @ 2017-12-20 20:04 dahua1 阅读(95) 评论(0) 推荐(0)
 
树的遍历
摘要: #include<stdlib.h>#include<stdio.h>#include<string.h>#pragma warning(disable:4996)char a[30];char b[30];int pre = 0;int zhong = 0;void getPost(int beg 阅读全文
posted @ 2017-12-20 20:03 dahua1 阅读(186) 评论(0) 推荐(0)
 

2017年12月15日

10万个字符串比较
摘要: #include<iostream>#define SIZE 100000char data[SIZE][501];typedef struct node{ int value; struct node *next; struct node *pre; char da[501]; }node;int 阅读全文
posted @ 2017-12-15 17:54 dahua1 阅读(116) 评论(0) 推荐(0)
 
HASH API
摘要: #include <stdio.h>#include <stdlib.h> #define SIZE 100000 //根据需要更改typedef struct node { int n; char str[501]; struct node * prev; struct node * next;} 阅读全文
posted @ 2017-12-15 17:51 dahua1 阅读(150) 评论(0) 推荐(0)
 
下一页