TP框架使用命令行 <?php namespace app\command; use think\Db; use app\shopee\Item; use think\console\Input; use think\console\Output; use think\console\Command ...
分类:
其他好文 时间:
2021-06-17 17:23:24
阅读次数:
0
#include<stdio.h>#include<stdlib.h>typedef int ElemType;typedef struct DNode{ ElemType data; struct DNode *prior,*next; }DNode,*DLinkList; //初始化链表 boo ...
分类:
其他好文 时间:
2021-06-17 17:21:37
阅读次数:
0
MVC模式1. model:模型层,数据的增删改查2. view:视图层,前端页面3. controller:控制层,处理业务 文件页面结构1. 页面以`.vue`结尾2. `template`,`script`,`style`三个标签,一个页面只能存在一个3. 代码段分析如下所示: <script ...
分类:
移动开发 时间:
2021-06-17 17:15:08
阅读次数:
0
一、H5技术栈新手入门学习路线: Html5+CSS3+javascript(学好DOM,BOM)->jQuery(DOM)->layui(CSS,jQuery)->Vue.js(js);中间在学下PS、UI、XML、JSON。 二、H5技术栈进阶学习路线: AJAX(Ajax原生、ajaxjQue ...
分类:
其他好文 时间:
2021-06-17 17:14:56
阅读次数:
0
2152 数字组合 现在小瓜有1到n这n个整数,他想知道用这n个整数组成一个长度为n的数字序列的所有方法(每个整数可以重复使用)。你能帮助他吗? 输入 一行一个整数n(1<=n<=6)。 输出 若干行,每行表示用1到n组成一个长度为n的数字序列的一种方法。所有方法按字典序输出。 输入样例 2 输出样 ...
分类:
其他好文 时间:
2021-06-17 17:14:39
阅读次数:
0
| # Maredown学习 | | | | ## 标题 | | | | ### 三级标题 | | | | | | | | ## 字体 | | | | ## 引用 | | | | > 狂神 | | | | ## 分割线 | | | | | | | | *** | | | | | | | | ## 图 ...
分类:
其他好文 时间:
2021-06-17 17:14:28
阅读次数:
0
springboot的自动配置原理 1、springboot的特点 1、1 依赖管理 springboot项目中的pom文件中继承一个父项目作为依赖管理 <!--parent标签,表示是一个父项目,这个maven项目继承该项目--> <parent> <groupId>org.springframe ...
分类:
编程语言 时间:
2021-06-17 17:13:57
阅读次数:
0
<dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.16.20</version> <scope>provided</scope> </dependency> ...
分类:
其他好文 时间:
2021-06-17 17:08:31
阅读次数:
0
构建一个 div , class 随便命名 css 部分 class 名字 { position: relative; // 相对定位是重点 } class名字:before,class名字:after{ position: absolute; content: " "; top: 10px; le ...
分类:
Web程序 时间:
2021-06-17 17:04:05
阅读次数:
0
快速排序法 ①先从队尾开始向前扫描且当low < high时,如果a[high] > tmp,则high–,但如果a[high] < tmp,则将high的值赋值给low,即arr[low] = a[high],同时要转换数组扫描的方式,即需要从队首开始向队尾进行扫描了②同理,当从队首开始向队尾进行 ...
分类:
编程语言 时间:
2021-06-17 17:03:32
阅读次数:
0