月间
个人学习记录,大部分是摘抄式的学习本
摘要: https://www.cnblogs.com/hushzhang/p/5901052.html 匿名方法:https://blog.csdn.net/weixin_30552635/article/details/94815059 阅读全文
posted @ 2020-06-02 15:11 月间 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-06-01 11:36 月间 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 3 int main(void) 4 { 5 int a[6] = {2,1,0,5,4,3}; 6 int i; 7 QuickSort(a,0,5);//第二个参数表示第一个元素的下标 第三个参数表示最后的元素的下标 8 9 for(i= 0 ;i< 阅读全文
posted @ 2020-03-10 12:49 月间 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef struct Node 5 { 6 int data; 7 struct Node * pNext; 8 }NODE,*PNODE; 9 10 typedef struct Stack 11 阅读全文
posted @ 2020-03-03 20:59 月间 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 typedef struct Node 5 { 6 int data; //数据域 7 struct Node * pNext;//指针域 8 }NODE,*PNODE; 9 10 //函数声明 11 PN 阅读全文
posted @ 2020-03-03 18:15 月间 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 struct Arr 5 { 6 int * pBase;//存储的是数组的第一个元素的 地址 7 int len;//数组所能容纳的最大元素的个数 8 int cnt; //当前数组有效元素的个数 9 / 阅读全文
posted @ 2020-02-29 13:07 月间 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 struct Book 5 { 6 char title [128]; 7 char author [40]; 8 struct Book *next; 9 }; 10 11 void getInput(s 阅读全文
posted @ 2020-02-22 17:18 月间 阅读(900) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-07-05 10:36 月间 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1. 查询 db.表.find().pretty() find(querry,project) pretty()格式化显示 findOne() 返回一条结果 比较 (>) 大于 - $gt (<) 小于 - $lt (>=) 大于等于 - $gte (<= ) 小于等于 - $lte 小tips: 阅读全文
posted @ 2019-06-25 15:48 月间 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 1. 下载idea https://blog.csdn.net/yl1712725180/article/details/80309862 破解方法: <!--StartFragment --> 针对2019版本 请不要参照网站的做法,按照我的来第一步将:0.0.0.0 https://accoun 阅读全文
posted @ 2019-06-14 11:09 月间 阅读(103) 评论(0) 推荐(0) 编辑