NOT
C#文件监控
C#文件监控 内部类使用 //实现文件 监视(监控) public static class fileWatcher { private static FileSystemWatcher? watcher; public static bool EnableWathcer(DirectoryInfo ......
随机选择算法
在一个无序数组中求第k大或者第k小的问题,要求时间复杂度是O(N),那么对于这两个问题只要解决一个另一个就解决了。因为求第一大可以转换成求第n小。 那么对于一个有100个元素的数组来说,我们要求第57小的数,那么它就是在求这个数组排好序之后下标在56的值,因为如果数组的元素没有重复的话,那么在下标0 ......
数据结构绪论
数据 定义:数据是信息的载体,所有能被输入到计算机中,且能被计算机处理的符号的集合。 例:在生活中的各种信息都可以作为数据来进行输入和处理。eg:图片·身份信息等。 数据元素 定义:数据元素是数据的基本单位,常被作为一个整体来考虑。 例如:每个学生信息就是数据元素 数据项 定义:数据项是构成数据元素 ......
实验三-电子公文传输系统1-个人贡献
实验三-电子公文传输系统1-个人贡献 任务详情 1 简述你完成的工作 2 你们小组总共的代码行数,你贡献的代码行数?相关代码链接? 3 你们小组总共的文档数?你贡献的文档数?相关链接? 主要完成的工作 个人主要完成的工作是扮演了项目经理和产品经理的角色,具体工作如下: 项目经理: 根据项目需求,制定 ......
使用JS和SignalR完成双向通信
如题,比NodeJS下直接websocket来的复杂。 web端 html: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>SignalR Example</title> 5 <script src="https://cdnjs.cloudflare.co ......
2023-2024 20232319《网络空间安全导论》第6周学习总结
思维导图 学习内容挖掘 身份认证与信息管理 身份认证的主要方法 1.用户名/口令:例如QQ微信密码等,其实质是口令,而非真正意义上的密码。 2.动态口令/一次性口令:短信验证码,邮件验证码。 3.挑战应答认证:非对称密码及数字签名的应用。 4.基于生物特征和物性特征:指纹认证,人脸认证,声纹认证等。 ......
Linux常用命令
系统目录结构一切皆文件根目录 / ,所有的文件都挂载在这个节点下登录系统后,在当前命令窗口下输入命令:ls 树状目录结构:(Linux的一切资源都挂载在这个 / 根节点下) 以下是对这些目录的解释: /bin:bin是Binary的缩写, 这个目录存放着最经常使用的命令。 /boot: 这里存放的是 ......
11.24
今日学习内容 document.getElementById("login-form").addEventListener("submit", function (event) { event.preventDefault(); // 阻止表单默认提交行为 var username = docume ......
DependencyInjection组件实现IOC控制反转(2)
目的:讲解DependencyInjection组件实现IOC的步骤 1、添加Nuget包:Micosoft.Extensions.DependencyInjection 2、创建容器: //创建容器 ServiceCollection services = new ServiceCollectio ......
11.23
今日学习内容 <%@ page import="java.sql.DriverManager" %><%@ page import="java.sql.*" %><%-- Created by IntelliJ IDEA. To change this template use File | Set ......
实验六 模板类、文件I/O和异常处理
实验任务4 Vector.hpp: 1 #pragma once 2 3 #include<iostream> 4 #include<stdexcept> 5 6 using namespace std; 7 8 template<typename T> 9 class Vector 10 { 11 ......
11.8
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......
11.9
今日学习内容 <%@ page import="java.sql.*" %><%@ page import="java.sql.DriverManager" %><%-- Created by IntelliJ IDEA. To change this template use File | Set ......
11.10
今日学习内容 <%@ page contentType="text/html;charset=UTF-8" language="java" %><html><head> <title>更改密码</title></head><body><h1>更改密码</h1><hr><form action="su ......
11.15
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......
11.16
今日学习内容 <%@ page import="java.sql.DriverManager" %><%@ page import="java.sql.*" %><%-- Created by IntelliJ IDEA. To change this template use File | Set ......
11.17
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......
11.20
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......
11.21
今日学习内容 <%@ page import="java.sql.*" %><%@ page import="java.sql.DriverManager" %><%-- Created by IntelliJ IDEA. To change this template use File | Set ......
11.22
今日学习内容 <%@ page import="java.sql.*" %><%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page content ......
右值引用相关整理
前言 C++中有“移动语义、右值引用、引用折叠、万能引用、完美转发”等许多概念,本文尽量按照时间顺序,理清这些概念的由来,有什么关系,解决了什么问题。 移动语义 首先介绍移动语义的概念。移动语义是C++11引入的,正如移动一词的含义:一个物体从地点A到地点B,从结果上看,物体位置发生了变化,还是一个 ......
10.25
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......
10.26
今日学习内容 <%@ page import="java.sql.*" %><%@ page import="java.sql.PreparedStatement" %><%-- Created by IntelliJ IDEA. To change this template use File | ......
10.27
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......
10.30
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......
10.31
今日学习内容 <%@ page import="java.sql.DriverManager" %><%@ page import="java.sql.*" %><%-- Created by IntelliJ IDEA. To change this template use File | Set ......
11.1
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......
11.2
今日学习内容 <%@ page import="java.sql.*" %><%@ page import="java.sql.DriverManager" %><%-- Created by IntelliJ IDEA. To change this template use File | Set ......
11.3
今日学习内容 <%-- Created by IntelliJ IDEA. To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" ......