LeetCode-49-Group-Anagrams Given an array of strings, group anagrams together. For example, given: [“eat”, “tea”, “tan”, “ate”, “nat”, “bat”], Return: [ ["ate", "eat","tea"], ["nat","tan"], ["bat"] ] 输入一个字符串数组,输出的是:将相同字符的字符串放在一个数组的二维数组。相同字符的处理,基
Leetcode-48-Rotate-Image ou are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Note: You have to rotate the image in-place, which means you have to modify the input 2D matrix directly. DO NOT allocate another 2D matrix and do the rotation. Example : Given input matrix = [ [1,2,3], [4,5,6], [7,8,9] ], rotate the input matrix in-place such that it becomes: [
服务器-Nginx设计架构 Nginx服务器架构 Nginx服务器启动后,产生一个主进程,主进程执行一系列工作后产生一个或多个工作进程。 如下图所
服务器-Nginx的事件驱动模型 什么是事件驱动模型 事件驱动概念:在持续的事物管理过程中,由当前时间节点上出现的事件引起的调用可用资源执行相关
服务器-Nginx的Web请求处理机制 并行处理请求的三种方式 web服务器和客户端是一对多的关系,所以web服务器要能同时为多个客户端提供服务
服务器-Nginx模块化结构 习惯上将Nginx分为:核心模块、标准模块、可选HTTP模块、邮件服务模块和第三方模块五大类。 核心模块 包含对两部
服务器-Nginx-一个简单的例子 直接贴一个几经磨难的简单的例子吧,虽然简单,但是有些不理解的地方,就出了很多错,但是因为这些错误,在对ng
服务器-Nginx基础配置 nginx.conf文件结构 Nginx的默认配置文件为:nginx.conf,文件一共由三个部分组成,分别为:全局
服务器-Nginx安装和基本配置 Nginx的安装 没有看书上,直接在ubuntu输了一个nginx,大概是ubuntu的支持比较好,直接提醒可
初识Nginx Nginx的历史 Netcraft公司,1994年在英国成立。 常见服务器 Apache服务器:目前最广泛使用的web服务器,由于使