一、实验要求 结合中断上下文切换和进程上下文切换分析Linux内核一般执行过程 以fork和execve系统调用为例分析中断上下文的切换 分析execve系统调用中断上下文的特殊之处 分析fork子进程启动执行时进程上下文的特殊之处 以系统调用作为特殊的中断,结合中断上下文切换和进程上下文切换分析L ...
分类:
系统相关 时间:
2020-06-11 21:45:52
阅读次数:
67
1、树的简介 树结构本身是一种天然的组织结构 计算机文件夹 家谱 图书馆图书分类 公司职工 将数据使用树结构存储后,出奇的高效 2、树的分类 二分搜索树(Binary Search Tree) 平衡二叉树 AVL 红黑树 堆 并查集 线段树 Trie (字典树,前缀树) 3、二叉树简介 一个元素具有 ...
分类:
其他好文 时间:
2020-06-11 19:47:18
阅读次数:
55
折半查找的实现代码: #include <stdio.h> #include <stdlib.h> #define keyType int typedef struct { keyType key;//查找表中每个数据元素的值 //如果需要,还可以添加其他属性 }ElemType; typedef ...
分类:
其他好文 时间:
2020-06-11 16:44:05
阅读次数:
86
pip install jiebaimport jiebastring = "很不错的草莓"for i in jieba.cut(string, cut_all=True): print(i)for i in jieba.cut_for_search("他毕业于上海交通大学机电系,后来在一机部上海电 ...
分类:
其他好文 时间:
2020-06-11 10:45:23
阅读次数:
62
一、下载centos镜像 1.搜索centos并下载 docker search centos 2. 下载纯净版的centos docker pull docker.io/centos 3. 下查看下载的镜像 docker images 二、创建容器 1. 创建 docker run -dit -- ...
分类:
其他好文 时间:
2020-06-10 19:32:00
阅读次数:
58
今天在使用 yum 命令进行包的下载时候,Linux 提示 没有可用的软件包~ 如下: [root@localhost share]# yum -y install wordpress 已加载插件:fastestmirror, product-id, search-disabled-repos, s ...
分类:
其他好文 时间:
2020-06-10 19:05:17
阅读次数:
649
docker search mssql 查找mssql镜像 docker pull microsoft/mssql-server-linux 拉去mssql镜像 docker images 查看镜像 docker run -e 'ACCEPT_EULA=Y' -e 'SA_PASSWORD=Abca ...
分类:
数据库 时间:
2020-06-10 13:01:51
阅读次数:
141
KMP看书是很难懂的......相信我,推荐一个易懂视频 https://www.bilibili.com/video/BV1jb411V78H?from=search&seid=9395428282072905815 1.为什么只用研究模式串?因为发生不匹配时,模式串当前下标之前的内容和被查找串的 ...
分类:
编程语言 时间:
2020-06-10 12:57:56
阅读次数:
86
英文版:https://www.elastic.co/guide/index.html,内容较新 中文版:https://www.elastic.co/guide/cn/elasticsearch/guide/current/index.html 基于2.x,内容老旧 ...
分类:
其他好文 时间:
2020-06-09 22:03:52
阅读次数:
60
一、查询操作 查询语句基本语法 以下语句类似于mysql的: select * from xxx.yyy.topic where 条件1,条件2,...条件N GET xxx.yyy.topic/logs/_search{ "query": { "bool": { 这里面是限制条件,不写则查所有数据 ...
分类:
其他好文 时间:
2020-06-09 20:20:56
阅读次数:
94