摘要: 学 号 201821430020 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验四 恶意代码技术 学生姓名 李金钊 年级 2018 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验 阅读全文
posted @ 2020-11-30 10:51 李金钊 阅读(152) 评论(0) 推荐(0)
摘要: 实验报告 三 学 号201821430020 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验三 密码破解技术 学生姓名 李金钊 年级 18 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2016年11月7 阅读全文
posted @ 2020-11-16 07:48 李金钊 阅读(115) 评论(0) 推荐(0)
摘要: 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验二 网络嗅探与欺骗 学生姓名 李金钊 年级 18 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2016年11月7日 实验任务总纲 2016—2017 学年  阅读全文
posted @ 2020-11-02 10:37 李金钊 阅读(111) 评论(0) 推荐(0)
摘要: 学 号 中国人民公安大学 Chinese people’ public security university 网络对抗技术 实验报告 实验一 网络侦查与网络扫描 学生姓名 李金钊 年级 18 区队 网安三区 指导教师 高见 信息技术与网络安全学院 2017年7月7日 实验任务总纲 2017—201 阅读全文
posted @ 2020-10-19 10:22 李金钊 阅读(146) 评论(0) 推荐(0)
摘要: assume cs:codedata segment db 'welcome to masm!' db 2,24h,71hdata ends stack segment db 16 dup(0)stack endscode segment start:mov ax,stack mov ss,ax m 阅读全文
posted @ 2019-12-17 15:18 李金钊 阅读(133) 评论(0) 推荐(0)
摘要: assume cs:code, ds:data, es:table, ss:stacks data segment db '1975', '1976', '1977', '1978', '1979', '1980', '1981', '1982', '1983' db '1984', '1985', 阅读全文
posted @ 2019-12-17 15:09 李金钊 阅读(292) 评论(0) 推荐(0)
摘要: #include<stdio.h>#include<stdlib.h>typedef struct Bitnode{ char data; struct Bitnode *lchild,*rchild;}Bitnode,*Bitree; void creatBitree(Bitree &t){ ch 阅读全文
posted @ 2019-12-16 10:47 李金钊 阅读(162) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h> int STACK_INIT_SIZE=100;int STACKINCREMENT=10;typedef struct{ int *base; int *top; int stacksize;}sqstack; void 阅读全文
posted @ 2019-11-10 13:58 李金钊 阅读(160) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h> typedef struct Node{ float shi; float xu; struct Node *next;}Node,*Linklist; void insert(Linklist L,float a,floa 阅读全文
posted @ 2019-11-04 10:42 李金钊 阅读(183) 评论(0) 推荐(0)
摘要: #include <stdio.h>float averagestudent(int x,int y,int z){ float average; average=(float)(x+y+z)/3; return average;}float averagesoure(int a,int b,int 阅读全文
posted @ 2019-06-06 15:47 李金钊 阅读(148) 评论(0) 推荐(0)