卡斯柯西安

有佬知道西安这边卡斯柯福利待遇怎么样嘛,每个月到手能上万吗

引流:西安 银行 农发 银行 邮储 工商 阿浙商 里 腾讯 美团 快手 字节跳动 华为 天翼云蔚来理想 小鹏 小红书 携程 联通 移动 云计算 寒气寒冬将至 财报盈利 亏损 输送大厂 卷死 躺平 摆烂 校招简历求捞 挂了hr面试官 应届润毕业cy焦虑预期PUA解约试用期run跑路 国企外企一线二线打工人佛系 学历厂985c9华五 **** 白菜 大白菜开水 猪厂鹅厂 福报996菊厂买房房贷上车后悔带校招生成长试用期晋升答辩涨薪求捞实习上岸转正秋招22届23届机会前端后端测试算法数据
全部评论

相关推荐

有大神能教一下菜菜嘛?求二叉树的最小值节点和最大值节点的距离看了答案知道了用lca+depth的方式做,但是我很好奇我为什么是wa呜呜呜package org.example;import java.util.*;public class Solution {/*** 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可*** @param root TreeNode类 树的根节点* @return int整型*/int max = Integer.MIN_VALUE;int min = Integer.MAX_VALUE;public void getMaxMin(TreeNode root){if(root==null){return ;}max =Math.max(max,root.val);min =Math.min(min,root.val);getMaxMin(root.left);getMaxMin(root.right);}Map<TreeNode,Integer> mapmin = new HashMap<>();Map<TreeNode,Integer> mapmax = new HashMap<>();public boolean getparent(TreeNode root,int target,Map<TreeNode,Integer> map){if (root==null){return false;}if(root.val==target){map.put(root,0);return true;}boolean t1 = getparent(root.left,target,map);boolean t2 = getparent(root.right,target,map);if (t1){map.put(root ,map.get(root.left)+1);return true;}else if (t2){map.put(root ,map.get(root.right)+1);return true;}else{return false;}}public int getDis (TreeNode root) {// write code hereTreeNode temp = root;getMaxMin(temp);temp = root;getparent(temp,min,mapmin);temp = root;getparent(temp,max,mapmax);int minpar = Integer.MAX_VALUE;TreeNode targetNode = null;for (TreeNode treeNode : mapmin.keySet()) {if (mapmax.containsKey(treeNode)&&minpar>mapmax.get(treeNode)   ){minpar=mapmax.get(treeNode);targetNode = treeNode;}}return mapmax.get(targetNode) + mapmin.get(targetNode);}}
点赞 评论 收藏
分享
评论
2
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务