当前位置: 首页 > news >正文

做营销网站设计网络规划设计师教程第2版下载

做营销网站设计,网络规划设计师教程第2版下载,融水县住房和城乡建设局网站,广州有名的广告公司前言 二叉搜索树操作#xff0c;继续。 记录 五十六【501.二叉搜索树中的众数】 一、题目阅读 给你一个含重复值的二叉搜索树#xff08;BST#xff09;的根节点 root #xff0c;找出并返回 BST 中的所有 众数#xff08;即#xff0c;出现频率最高的元素#xff09;…前言 二叉搜索树操作继续。 记录 五十六【501.二叉搜索树中的众数】 一、题目阅读 给你一个含重复值的二叉搜索树BST的根节点 root 找出并返回 BST 中的所有 众数即出现频率最高的元素。 如果树中有不止一个众数可以按 任意顺序 返回。 假定 BST 满足如下定义 结点左子树中所含节点的值 小于等于 当前节点的值 结点右子树中所含节点的值 大于等于 当前节点的值 左子树和右子树都是二叉搜索树 示例 1 输入root [1,null,2,2] 输出[2]示例 2 输入root [0] 输出[0]提示 树中节点的数目在范围 [1, 10^4] 内 -10^5 Node.val 10^5进阶你可以不使用额外的空间吗假设由递归产生的隐式调用栈的开销不被计算在内 二、尝试实现 依然使用二叉搜索树中序遍历得到有序递增序列的特性。 思路【直白想法】 借助数组通过中序遍历将二叉搜索树中的值取出来。再在数组中操作。在数组中使用双指针循环判断一个值出现的次数再和最大次数记录比较 如果比最大出现次数的记录小那么不操作如果相等那么加入到返回值数组中如果比最大出现次数的记录大判断返回值数组中是否为空先清空后加入。 代码实现【借助数组额外开辟空间】 /*** Definition for a binary tree node.* struct TreeNode {* int val;* TreeNode *left;* TreeNode *right;* TreeNode() : val(0), left(nullptr), right(nullptr) {}* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}* };*/ class Solution { public:void traversal(TreeNode* cur,vectorint nums){if(!cur) return;traversal(cur-left,nums);nums.push_back(cur-val);traversal(cur-right,nums);return;}vectorint findMode(TreeNode* root) {vectorint result;vectorint nums;traversal(root,nums);int max 0;for(int i 0;i nums.size();){int ji1;int count 1;for(;j nums.size();j){if(nums[j] nums[i]){count;}else{break;}}if(count max){if(!result.empty()) result.clear();result.push_back(nums[i]);max count;}else if(count max){result.push_back(nums[i]);}i j;}return result;} };三、参考学习 参考学习链接 学习目标如何在树中边遍历边确定众数肯定还是双指针。尝试一下有bug class Solution { public:int maxcount 0;//记录最大次数int count 1;//计数。TreeNode* pre nullptr;void traversal(TreeNode* cur,vectorint nums){if(!cur) return;traversal(cur-left,nums);if(pre pre-val cur-val){count;}else if(pre pre-val ! cur-val){if(count maxcount){if(!nums.empty()) nums.clear();nums.push_back(pre-val);maxcount count;//最大值更新}else if(count maxcount){nums.push_back(pre-val);}count 1;//重新计数新的值pre cur;//此处才更新pre}else if(!pre){pre cur;//初始时避免pre空}traversal(cur-right,nums);return;}vectorint findMode(TreeNode* root) {vectorint result;traversal(root,result);//处理最后} };使用时候如何结束时也能操作元素呢在cur-right后还有处理逻辑。 学习内容 双指针法解决先说误区 从借助数组的代码实现中发现遍历数组时使用了i,j相当于i不动j移动统计这个元素出现次数。如果nums[j] ! nums[i]说明nums[i]出现次数统计完毕。接下来比较count和max。没有想到可以相邻元素比较如果相等count。count加一次和max比较一次不相等时前面的count已经放到结果里。每一次都要进行count和max比较。尝试双指针错误在于认为pre-val和cur-val不相等时才更新pre才比较count和max。正确pre紧跟cur把count和max的比较放到if外面这样count更新max更新。总结错误——元素比较不相等时统计完一个元素次数后放入结果正确——每次元素比较即使相等也要判断count和max。 双指针代码修正 class Solution { public:int maxcount 0;//记录最大次数int count 1;//计数。TreeNode* pre nullptr;void traversal(TreeNode* cur,vectorint nums){if(!cur) return;traversal(cur-left,nums);if(pre pre-val cur-val){count;}else if(pre pre-val ! cur-val ){count 1;//重新计数新的值}pre cur;//初始时避免pre空if(count maxcount){if(!nums.empty()) nums.clear();nums.push_back(pre-val);maxcount count;//最大值更新}else if(count maxcount){nums.push_back(pre-val);}traversal(cur-right,nums);return;}vectorint findMode(TreeNode* root) {vectorint result;traversal(root,result);return result;} };迭代法中序迭代模版加中间节点处理逻辑。普通二叉树如何求众数 普通二叉树数值没有任何关系那么双指针法不成立。不过借助数组方法依然可以用。借助数组遍历取出所有值放到vector里面之后sort从小到大排个序遍历数组参考借助数组思路用unordered_map统计元素出现次数再把map转换成vector再自定义比较函数带入sort中得到从大到小的排序vector。 普通二叉树求众数代码实现 /*** Definition for a binary tree node.* struct TreeNode {* int val;* TreeNode *left;* TreeNode *right;* TreeNode() : val(0), left(nullptr), right(nullptr) {}* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}* };*/ class Solution { public:void traversal(TreeNode* cur,unordered_mapint,int nums){if(!cur) return;nums[cur-val];traversal(cur-left);traversal(cur-right);}bool cmp(const pairint,int a,const pairint,int b) const{return a.second b.second;}vectorint findMode(TreeNode* root) {vectorint result;unordered_mapint,int map;traversal(root,map);vectorpairint,int vec(map.begin(),map.end());sort(vec.begin(),vec.end(),cmp);result.push_back(vec[0].first);for(int i 0;i vec.size();i){if(vec[i].second vec[0].second) result.push_back(vec[i].first);}return result;} };总结 【501.二叉搜索树中的众数】和【求普通二叉树的众数】 欢迎指正转载标明出处
文章转载自:
http://www.morning.hwlk.cn.gov.cn.hwlk.cn
http://www.morning.rgkd.cn.gov.cn.rgkd.cn
http://www.morning.wtcbl.cn.gov.cn.wtcbl.cn
http://www.morning.ylqpp.cn.gov.cn.ylqpp.cn
http://www.morning.tzzkm.cn.gov.cn.tzzkm.cn
http://www.morning.pzpj.cn.gov.cn.pzpj.cn
http://www.morning.srgnd.cn.gov.cn.srgnd.cn
http://www.morning.rlhgx.cn.gov.cn.rlhgx.cn
http://www.morning.ccyjt.cn.gov.cn.ccyjt.cn
http://www.morning.rfpb.cn.gov.cn.rfpb.cn
http://www.morning.qnqt.cn.gov.cn.qnqt.cn
http://www.morning.lthtp.cn.gov.cn.lthtp.cn
http://www.morning.kphyl.cn.gov.cn.kphyl.cn
http://www.morning.smcfk.cn.gov.cn.smcfk.cn
http://www.morning.dnqliv.cn.gov.cn.dnqliv.cn
http://www.morning.nqbpz.cn.gov.cn.nqbpz.cn
http://www.morning.wdhzk.cn.gov.cn.wdhzk.cn
http://www.morning.nfgbf.cn.gov.cn.nfgbf.cn
http://www.morning.mdnnz.cn.gov.cn.mdnnz.cn
http://www.morning.rtbx.cn.gov.cn.rtbx.cn
http://www.morning.rhzzf.cn.gov.cn.rhzzf.cn
http://www.morning.kmqwp.cn.gov.cn.kmqwp.cn
http://www.morning.rhchr.cn.gov.cn.rhchr.cn
http://www.morning.qzmnr.cn.gov.cn.qzmnr.cn
http://www.morning.pffx.cn.gov.cn.pffx.cn
http://www.morning.ckwrn.cn.gov.cn.ckwrn.cn
http://www.morning.ltrms.cn.gov.cn.ltrms.cn
http://www.morning.feites.com.gov.cn.feites.com
http://www.morning.jhtrb.cn.gov.cn.jhtrb.cn
http://www.morning.bfjtp.cn.gov.cn.bfjtp.cn
http://www.morning.tnhg.cn.gov.cn.tnhg.cn
http://www.morning.wchsx.cn.gov.cn.wchsx.cn
http://www.morning.wjndl.cn.gov.cn.wjndl.cn
http://www.morning.drcnn.cn.gov.cn.drcnn.cn
http://www.morning.yknsr.cn.gov.cn.yknsr.cn
http://www.morning.zfxrx.cn.gov.cn.zfxrx.cn
http://www.morning.rsnd.cn.gov.cn.rsnd.cn
http://www.morning.lzjxn.cn.gov.cn.lzjxn.cn
http://www.morning.tgpgx.cn.gov.cn.tgpgx.cn
http://www.morning.bqwsz.cn.gov.cn.bqwsz.cn
http://www.morning.gwqq.cn.gov.cn.gwqq.cn
http://www.morning.fdsbs.cn.gov.cn.fdsbs.cn
http://www.morning.pngfx.cn.gov.cn.pngfx.cn
http://www.morning.pmsl.cn.gov.cn.pmsl.cn
http://www.morning.taipinghl.cn.gov.cn.taipinghl.cn
http://www.morning.rzmsl.cn.gov.cn.rzmsl.cn
http://www.morning.qnjcx.cn.gov.cn.qnjcx.cn
http://www.morning.xbnkm.cn.gov.cn.xbnkm.cn
http://www.morning.yfstt.cn.gov.cn.yfstt.cn
http://www.morning.rbjth.cn.gov.cn.rbjth.cn
http://www.morning.qgfkn.cn.gov.cn.qgfkn.cn
http://www.morning.rkfwr.cn.gov.cn.rkfwr.cn
http://www.morning.qydgk.cn.gov.cn.qydgk.cn
http://www.morning.gthgf.cn.gov.cn.gthgf.cn
http://www.morning.wcjk.cn.gov.cn.wcjk.cn
http://www.morning.qggm.cn.gov.cn.qggm.cn
http://www.morning.qgmbx.cn.gov.cn.qgmbx.cn
http://www.morning.rtsx.cn.gov.cn.rtsx.cn
http://www.morning.wmqxt.cn.gov.cn.wmqxt.cn
http://www.morning.wdskl.cn.gov.cn.wdskl.cn
http://www.morning.shuanga.com.cn.gov.cn.shuanga.com.cn
http://www.morning.nrpp.cn.gov.cn.nrpp.cn
http://www.morning.smwlr.cn.gov.cn.smwlr.cn
http://www.morning.wgtnz.cn.gov.cn.wgtnz.cn
http://www.morning.krgjc.cn.gov.cn.krgjc.cn
http://www.morning.hqwtm.cn.gov.cn.hqwtm.cn
http://www.morning.npbnc.cn.gov.cn.npbnc.cn
http://www.morning.tbwsl.cn.gov.cn.tbwsl.cn
http://www.morning.qjngk.cn.gov.cn.qjngk.cn
http://www.morning.mooncore.cn.gov.cn.mooncore.cn
http://www.morning.ngcw.cn.gov.cn.ngcw.cn
http://www.morning.bzcjx.cn.gov.cn.bzcjx.cn
http://www.morning.qcztm.cn.gov.cn.qcztm.cn
http://www.morning.bqyb.cn.gov.cn.bqyb.cn
http://www.morning.jkfyt.cn.gov.cn.jkfyt.cn
http://www.morning.xdpjf.cn.gov.cn.xdpjf.cn
http://www.morning.chgmm.cn.gov.cn.chgmm.cn
http://www.morning.jfsbs.cn.gov.cn.jfsbs.cn
http://www.morning.zbhfs.cn.gov.cn.zbhfs.cn
http://www.morning.drmbh.cn.gov.cn.drmbh.cn
http://www.tj-hxxt.cn/news/279964.html

相关文章:

  • 做免费资料分享网站会不会涉及版权龙山县建设局网站
  • 可以发布广告的网站成都企业建站系统
  • 泰州网站关键词优化软件咨询定制网站开发接私活
  • 去公司叫自己做网站不会做电商网站 服务器
  • 一个网站源码值多少钱做1688网站需要懂英语吗
  • 一定火网站建设定制弹窗网站制作
  • 站长之家是什么色轮 网站
  • 常州自助建站seo网上注册公司在哪里
  • 网站开发与软件开发的区别微网站建设哪家好
  • 百度做网站不给FTP密码保险公司网站
  • 松原企业网站建设网页版
  • php做简易网站三门网站建设
  • 商城网站制作的教程黑龙江住房建设部网站
  • 做外贸找客户最好用的网站中文wordpress主题下载
  • 重庆旅游seo整站优化素材
  • 阿里巴巴怎么做不花钱的网站宿迁经济技术开发区
  • 网站制作的服务机构网络营销的主要传播渠道是
  • 知识产权教育网站建设班级优化大师官网
  • 网站查询页面设计wdcp 配置网站
  • 商务网站建设与推广实训意义dll网站服务
  • 网站关键词优化怎么做国内可以上的网站
  • 做建站较好的网站沧州南皮网站建设
  • 海南网站推广建设云南百度小程序开发
  • 杭州城乡建设厅网站广州软件开发工资怎么样
  • 做暖dnf动态ufo网站如何用kali做网站渗透
  • 网站建设思维导图模板全球优秀网页设计机构
  • 网站栏目规划叫什么常见的网络营销工具有哪些
  • 建设工程监理网站mvc 网站开发
  • 网站想做个链接怎么做的百度有几个总部
  • 管理咨询公司的服务机构北京网站seo技术厂家