03 2023 档案

摘要:疑似20220723的一篇不知所云的笔记,remake到这po出来看看 Implementing Search Algorithms(DFS BFS&UCS) In this notebook we will go through implementing depth-first search, b 阅读全文 »
posted @ 2023-03-27 16:09 noobwei 阅读(18) 评论(0) 推荐(0) 编辑
摘要:数据结构Remake第四天 🌲 隔壁拿来直接能跑的 #include <iostream> using namespace std; typedef struct Node {//定义二叉树结构 char data; struct Node *lchild,*rchild; }*BiTree,Bi 阅读全文 »
posted @ 2023-03-26 17:02 noobwei 阅读(14) 评论(0) 推荐(0) 编辑
摘要:数据结构remake第三天 栈和串 栈的基本操作 #include <stdio.h> #include <stdlib.h> typedef int SElemType; typedef struct SeqStack { SElemType *data; int maxlen; int top; 阅读全文 »
posted @ 2023-03-25 17:02 noobwei 阅读(18) 评论(0) 推荐(0) 编辑
摘要:Shell运算符 表达式和运算符之间要有空格,例如 2+2 是不对的,必须写成 2 + 2,这与我们熟悉的大多数编程语言不一样。 完整的表达式要被 `` 包含 算术运算符与C语言的没有区别 算术运算符 下面是算术运算符的例子 > expr 14 % 9 5 > expr 10 + 10 20 > e 阅读全文 »
posted @ 2023-03-21 16:48 noobwei 阅读(23) 评论(0) 推荐(0) 编辑
摘要:https://github.com/trustedsec/social-engineer-toolkit/issues/503 error in setoolkit #503 使用setoolkit的时候碰到了**[\*] Looks like the web_server can't bind 阅读全文 »
posted @ 2023-03-20 20:28 noobwei 阅读(53) 评论(0) 推荐(0) 编辑
摘要:数据结构remake第二天 静态链表 可以理解为没有指针的编程语言的替代方案,增加cur作为p->next #include<stdio.h> #include<stdlib.h> #define MAXSIZE 10 typedef int ElemType; typedef struct Nod 阅读全文 »
posted @ 2023-03-19 14:53 noobwei 阅读(18) 评论(0) 推荐(0) 编辑
摘要:https://zh.wikipedia.org/wiki/软件测试 https://www.ibm.com/cn-zh/topics/software-testing https://www.softwaretestingmaterial.com/software-testing/ https:/ 阅读全文 »
posted @ 2023-03-18 15:22 noobwei 阅读(64) 评论(0) 推荐(0) 编辑
摘要:数据结构remake第一天 线性表的操作 // // baby DataStructrue.cpp // dataStructure // // Created by on 2023/3/17. #include<stdio.h> #define N 10 #define MAX 20 typede 阅读全文 »
posted @ 2023-03-17 19:58 noobwei 阅读(18) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示