JaneZ's Learning Space
  • Home
  • Archives
  • Categories
  • Tags
  • About
  • Daily

Data-Structure15

Before: Am I noisy?I really regret.Why am I being so annoying?Why am I becoming jealous of something unnecessary?Maybe it’s because of something romantic,something secret,something I keep chasing,and
2025-03-07
Data Structure
#Data Structure #C++ #Tree #Binary Tree #BST #AVL #Balanced Binary Tree

Introduction-to-Algorithms3

Before: 哎帮人debug好累啊,边改别人的代码边学AVL,也是无敌了。我到底要不要见她一面呢?感觉错过了就是一辈子😢😢😢Introduction to Algorithms 3 Balanced Binary Search Tree——AVLFirst, recall an important definition of Height of a Node: length of the
2025-03-06
Algorithms
#Data Structure #C++ #Algorithm #Tree #Binary Tree #AVL #Balanced Binary Tree

Data-Structure14

Before:Long Time No See!这周前几天一直在小作业、数分作业、物理作业、物理实验(依托),到了周四也算是闲下来了,有了一大把自学的时间😋😋😋这周还是挺不错的?珍惜能天天见面的日子吧🥰Waiting always comes to an end.你是我声色张扬下欲盖弥彰的温柔理想。Data Structure 14 集合与静态查找表集合的定义首先,集合中数据元素的关系十分
2025-03-06
Data Structure
#Data Structure #C++ #Set

数据结构3

数据结构 3 队列Where 队列?计算机中CPU将时间切成很多个小的时间单元,实际上是轮流在为用户服务,存在一个等待运行的过程——尽情期待《操作系统》(bushi) 银行ATM 取款机 排队的过程 循环队列难以判断是满是空时,我们一般选择牺牲一个单元(但似乎记录一下队列的长度也可以解决问题) 循环队列类同样需要由队列的抽象类派生即便是循环队列同样可能存在存储空间不够的情况,所以我们仍然需要私有成
2025-03-06
Data Structure
#Data Structure #C++ #Queue

Introduction-to-Algorithms2

Before:风止于秋水,我止于你Introduction to Algorithms 2 Binary Search Tree & Binary Search SortBase on ?Runway Reservation System!!!(My favourite plane! We’re saved!) PropertiesEach node x in the binary tr
2025-03-01
Algorithms
#Data Structure #Algorithm #BST

Introduction to Algorithms1

Before:去年12月从班主任口中得知了我们的主角——MIT 6.006 Introduction to Algorithms这门非常经典的课(被誉为“MIT-EECS系的瑰宝”)。室友 @three-hats-user 同学在我的推荐下(自己没学别人学了🤡)在寒假卷了这门课(虽然还没学完),对它评价也很高。于是今天入手了这门课,一句话:不愧是MIT EECS🧎‍♀️🧎‍♀️🧎‍♀️另外
2025-03-01
Algorithms
#Data Structure #Algorithm #Heap

Mathematical-Logic2

Before:哎呀数理逻辑真的好抽象😭本来英语就烂,还有一大堆新定义的符号,绕在一起,感觉更像是在学语言而不是数学😥再加上周五晚上连上3节😅Result:果断重开了Decision:我一定要用中文把这门课搞清楚,抵制洋文!!!Mathematical Logic 2 一阶逻辑的语义Structure 结构在不同的场合下,同一个一阶逻辑命题可能有不同的含义。如对∀v0Rv0v0,既可以解读成“
2025-02-28
Mathematical Logic
#Mathematical Logic

Data-Structure13

Before:priority_queue终于启动了!情书只有三行,爱意起于一瞬,结局愿是一生Data Structure 13 优先级队列优先级队列是什么?元素之间的关系是由元素的优先级决定的,而不是由入队的先后次序决定。在优先级队列中,优先级最高的元素是队头元素,优先级最低的元素是队尾元素。 基于树的优先级队列基于线性表的优先级队列入队出队的时间复杂度总有一个会到O(N),我们不可以接受这个时
2025-02-27
Data Structure
#Data Structure #C++ #Tree #Binary Tree #Priority Queue #Heap

Data-Structure12

Before:喜欢物理,喜欢数分,喜欢数据结构😋😋😋(疑似学了一天发疯)喜欢日升日落,喜欢璀璨星河,喜欢得不到的你Data Structure 12 哈夫曼树 树和森林哈夫曼树和哈夫曼编码背景:大多数计算机采用ASCII 编码,ASCII编码是一种等长的编码,每个字符的编码长度相同。但我们有一些常用的ASCII字符,也有一些较不常用的字符。如果所有字符均等长,将会造成保存文本空间较为庞大。所
2025-02-26
Data Structure
#Data Structure #C++ #Tree #Binary Tree #Huffman Tree

Data-Structure11

Before:全世界都在偶遇她,只有我没机会嘛😥Data Structure 11 二叉链表遍历的非递归实现及二叉树的应用二叉链表遍历的非递归实现上一节翁阿姨的课上,我们讲到了通过栈对函数实现非递归调用,而今天所说的二叉链表遍历的非递归实现,同样也是依靠链接栈这一数据结构实现的。实现时需要注意进栈顺序的细节,下面给出代码实现。 12345678910111213141516template &l
2025-02-25
Data Structure
#Data Structure #C++ #Tree #Binary Tree
123456

Search

JaneZ