- 博客(13)
- 收藏
- 关注
原创 链表是否存在环及环的个数
判断链表中是否存在环,可以使用双重循环但是时间复杂度为O(n^2),经典做法就是采用快慢指针来解决该问题如何确定链表中有环: 设置p,q两个指针,p为慢指针,q为快指针,p每次向前移动一个结点,q每次向前移动两个结点,慢指针的作用就是为了保证遍历完所有的结点,而快指针的作用就是为了当慢指针进入环中时,快速追上慢指针,达到确定链表中存在环的目的// 判断链表中是否有环in...
2019-08-08 14:50:11 492
原创 方格中A-B点路径的总数
#include <stdio.h>#define rows 3#define cols 5int main(){ int arr[4][5] ={0}; for (int i = 0; i < rows; ++i) { for (int j = 0; j < cols; ++j) { if(i...
2019-08-06 23:09:43 743
原创 字符串基本操作方法
字符串基础操作#include <stdio.h>//字符串长度int getLength(char *str) { int i=0; while (str[i]!='\0') i++; return i;}//首字母大写void upperStr(char *str) { if(str == NULL) { ...
2019-08-04 12:03:49 433
原创 啤酒瓶问题
问题:啤酒2块1瓶,4个盖换1瓶,2个空瓶换1瓶,10块可以喝几瓶#include<stdio.h>#define PRICE 2#define BOTTLE_PEICE 2#define BOTTLECAP_PRICE 4int main() { int money = 4; //钱的数目 int bottle = 0; //当前的瓶子数 ...
2019-08-04 00:34:18 543
翻译 centos7编译安装php7
1、下载源码wget -O php7.tar.gz http://cn2.php.net/get/php-7.1.1.tar.gz/from/this/mirror2、解压压缩包tar -xvf php7.tar.gz3、进入目录cd php-7.0.44、安装依赖包yum install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip...
2018-06-06 16:39:56 239
原创 win7安装scrapy
使用工具安装,其他安装方式太复杂了,费时费力1、去Anaconda官网:https://www.anaconda.com/download/ 下载windows版的Anaconda客户端2、在菜单栏找到Anaconda promot,点击进入3、输入:conda install scrapy (该命令将会初始化环境,并安装好scrapy)4、创建工程:执行第二步,选择一个文件夹:输入如下命令:sc...
2018-03-15 20:09:28 454
原创 安装Scrapy爬虫框架
在centos6.5下安装Scrapy爬虫框架,python版本为3.6.0依次执行如下命令:更新yum1、yum -y update安装gcc及扩展包2、yum install gcc libffi-devel python-devel openssl-devel安装开发工具包3、yum groupinstall -y development安装libxslt-d
2018-03-15 17:47:02 201
原创 laravle发送邮件
1、使用composer安装扩展包composer require maatwebsite/excel 2、在config/app.php 在 providers 数组内追加如下内容'providers' => [ Maatwebsite\Excel\ExcelServiceProvider::class, ]3、同时在 aliases
2018-02-01 19:36:55 422 2
原创 配置nginx支持host以https的形式访问
要想自己的域名可以以“https”的形式访问,那就需要配置自己的web服务器,我使用的是nginx,所以在这里谈一下配置自己的nginx支持https前期准备: 1、要想使用此功能需要安装nginx的ssl模块,该模块在编译安装nginx的时候使用 " –with-http_ssl_module"指定,之后就可以配置自己的nginx了 2、安装openssl和openssl-d
2017-12-29 17:42:15 5581
原创 yii入门
视图调用视图:在controller中使用return $this->renderPartial('index');//表示渲染index视图在视图文件index.php中写入hello index 在视图文件about.php中写入hello about在视图文件index.php中调用视图文件about.php 添加如下代码render('about',array('v_h
2017-12-15 15:30:07 462
原创 docker入门
安装docker查看是否支持docker: uname -r更新系统包: yum -y update安装:yum -y install docker启动:systemctl start docker.service 或者 service docker start测试运行hello-world: docker run hello-world配置开机自启动:systemctl
2017-12-15 15:23:10 270
原创 sed使用笔记
sed简单介绍sed全程是:Stream EDitor 既一种流编辑器,是一个简单而强大的文本解析转换工具,支持正则表达式,sed可以从文本中接受类似于管道的输入,也可以接受来自标准输入流的输入。调用sed命令的两种格式:sed [options] 'command' file(s)sed [options] -f scriptfile file(s)选项:
2017-11-28 21:39:47 219
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人