上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
摘要: 图的节点 // // Created by Administrator on 2021/8/10. // #ifndef C__TEST02_NODE_HPP #define C__TEST02_NODE_HPP #include "iostream" #include <vector> using 阅读全文
posted @ 2021-09-11 15:04 蘑菇王国大聪明 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 问题 给出一颗二叉树,每个节点有一个编号和一个值,该值可能为负数,请你找出一个最优节点(除根节点外),使得在该节点将树分成两棵树后(原来的树移除这个节点及其子节点,新的树以该节点为根节点),分成的两棵树各 节点的和之间的差绝对值最大。请输出该节点编号,如有多个相同的差,输出编号最小的节点。 输入 4 阅读全文
posted @ 2021-09-11 14:44 蘑菇王国大聪明 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 前言 其实完全可以不用这么麻烦,我就是为了练习自建堆,其实大材小用 描述 实现删除字符串中出现次数最少的字符,若多个字符出现次数一样,则都删除。输出删除这些单词后的字符串,字符串中其它字符保持原来的顺序。 注意每个输入文件有多组输入,即多个字符串用回车隔开 输入描述: 字符串只包含小写英文字母, 不 阅读全文
posted @ 2021-09-10 16:00 蘑菇王国大聪明 阅读(172) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; template<class T> class SmartPtr{ public: explicit SmartPtr():ptr(nullptr), count(new int(0)){} explicit Smar 阅读全文
posted @ 2021-09-01 09:51 蘑菇王国大聪明 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 多线程的栈 #include <iostream> #include <vector> #include <mutex> #include <thread> #include <stack> #include <exception> using namespace std; template<cla 阅读全文
posted @ 2021-09-01 09:04 蘑菇王国大聪明 阅读(65) 评论(0) 推荐(0) 编辑
摘要: LRU缓存 struct Node{ int key; int value; Node* next; Node* pre; Node(): key(-1), value(-1), next(nullptr), pre(nullptr){} explicit Node(int key_, int va 阅读全文
posted @ 2021-09-01 08:45 蘑菇王国大聪明 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #include <sstream> int main(){ vector<string> arr; string s; getline(cin, s); stringstream ss(s); while(getline(ss, s, ' ')){ arr.push_back(s); } for( 阅读全文
posted @ 2021-08-29 11:02 蘑菇王国大聪明 阅读(25) 评论(0) 推荐(0) 编辑
摘要: struct ListNode { int val; ListNode *next; ListNode() : val(0), next(nullptr) {} explicit ListNode(int x) : val(x), next(nullptr) {} ListNode(int x, L 阅读全文
posted @ 2021-08-26 17:09 蘑菇王国大聪明 阅读(69) 评论(0) 推荐(0) 编辑
摘要: // // Created by Administrator on 2021/8/5. // #ifndef C__TEST01_NQUEENS_HPP #define C__TEST01_NQUEENS_HPP #include <iostream> #include <vector> #incl 阅读全文
posted @ 2021-08-10 12:01 蘑菇王国大聪明 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 定义一个二叉树 #ifndef C__TEST01_NODE_HPP #define C__TEST01_NODE_HPP #include <stack> #include <queue> #include <unordered_map> #include <unordered_set> #inc 阅读全文
posted @ 2021-08-03 18:19 蘑菇王国大聪明 阅读(30) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页