621任务调度器 Posted on 2020-04-20 Words count in article: 1.1k | Reading time ≈ 4 621 任务调度器下面是题目 下面是题目给出的代码模板123456class Solution {public: int leastInterval(vector<char>& tasks, int n) { }} ... Read more »
206反转链表 Posted on 2020-04-20 Words count in article: 561 | Reading time ≈ 2 206反转链表写在前面 这篇的原文也在搭建博客中不幸牺牲 但是我还会简单注释一下 反转链表的作用很多,可以当作别的题目的子函数,比如回文,分隔等等 下面是题目 下面是题目给出的代码123456789101112131415/** * Definition for singly-linked li ... Read more »
160相交lianbiao Posted on 2020-04-20 Words count in article: 396 | Reading time ≈ 1 160 相交链表下面是题目 下面是题目给出的代码1234567891011121314/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ... Read more »
141环形链表 Posted on 2020-04-20 Words count in article: 385 | Reading time ≈ 1 141环形链表写在前面 因为原稿在操作时不慎丢失,所以忍痛再写!肯定不会比之前详细了 下面是题目 下面是题目给出的代码1234567891011121314/** * Definition for singly-linked list. * struct ListNode { * ... Read more »
如何用数组来控制指针实现链表 Posted on 2020-04-20 Words count in article: 3.3k | Reading time ≈ 15 如何用数组来控制指针实现链表.md 我们一般看到的链表定义都是这样的 12345struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} ... Read more »
当没有dummynode时实现链表头插 Posted on 2020-04-20 Words count in article: 93 | Reading time ≈ 1 如何实现链表的头插?12345678910111213// 链表一般是尾插的,那么怎么实现头插呢?void insertFromHead(ListNode* head){ //比如我要新插入一个节点 newNode,值为1; //先建立一个临时节点prev,让prev指向hea ... Read more »
当只能访问一个节点时,如何删除这个节点 Posted on 2020-04-20 Words count in article: 137 | Reading time ≈ 1 当只能访问该节点时,如何删除该节点那就是鸠占鹊巢,将下一个结点的值和指向赋给当前节点,再删除下一个节点123456789101112131415161718192021/** * Definition for singly-linked list. * struct ListNode { ... Read more »
JavaScript_4表达式和运算符 Posted on 2020-04-20 Words count in article: 2.8k | Reading time ≈ 11 写在前面 我是个Javascript的初学者。有很多地方写的不完善的,多多指教。 内容主要来自老师的ppt,但是存在增删改 我觉得只是听网课的话,走马观花的看一遍其实并不会留下多少印象,但是自己写点东西就会不一样 所以在自己写的时候,可以做到一个信息过滤,将已经懂的,或者艰涩难懂的略去 js的表 ... Read more »
C++09 Posted on 2020-04-20 Words count in article: 3.3k | Reading time ≈ 14 Day09总结类型转换1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 ... Read more »
C++08 Posted on 2020-04-20 Words count in article: 2.9k | Reading time ≈ 14 Day08总结01函数模板的基本语法123456789101112131415161718192021222324252627282930313233343536373839404142* template<typename T>告诉编译器T是万能数据类型,下面紧跟者的函数或者 ... Read more »