广东省建设工程交易中心网站,wordpress 充值卡,网站建设中企动力,文安做网站只出现一次的数字#xff08;位运算、数组#xff09;
给定一个非空整数数组#xff0c;除了某个元素只出现一次以外#xff0c;其余每个元素均出现两次。找出那个只出现了一次的元素。 说明#xff1a; 你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗位运算、数组
给定一个非空整数数组除了某个元素只出现一次以外其余每个元素均出现两次。找出那个只出现了一次的元素。 说明 你的算法应该具有线性时间复杂度。 你可以不使用额外空间来实现吗 示例 1: 输入: [2,2,1] 输出: 1 示例 2: 输入: [4,1,2,1,2] 输出: 4
解答
class Solution {public int singleNumber(int[] nums) {int res 0;for (int num : nums) {res ^ num;}return res;}
}输出每天是应该学习还是休息还是锻炼数学
30天中从第一天开始五天学习一天休息、一天锻炼输出每天是应该学习还是休息还是锻炼
public class HelloWorld {public static void main(String []args) {int n10,n20,n30,i;for(i1;i30;i){if(n15){System.out.println(学习);n1;continue;}else{System.out.println(休息);System.out.println(锻炼);n10;i;}}}
}将有序数组转换为二叉搜索树树、二叉搜索树
给你一个整数数组 nums 其中元素已经按 升序 排列请你将其转换为一棵 高度平衡 二叉搜索树。 **高度平衡 **二叉树是一棵满足「每个节点的左右两个子树的高度差的绝对值不超过 1 」的二叉树。
示例 1
输入nums [-10,-3,0,5,9] 输出[0,-3,9,-10,null,5] 解释[0,-10,5,null,-3,null,9] 也将被视为正确答案 示例 2
输入nums [1,3] 输出[3,1] 解释[1,3] 和 [3,1] 都是高度平衡二叉搜索树。
提示
1 nums.length 104-104 nums[i] 104nums 按 严格递增 顺序排列
解答
public class TreeNode {int val;TreeNode left;TreeNode right;TreeNode() {}TreeNode(int val) {this.val val;}TreeNode(int val, TreeNode left, TreeNode right) {this.val val;this.left left;this.right right;}
}
class Solution {public TreeNode sortedArrayToBST(int[] nums) {return traversal(nums, 0, nums.length - 1);}public TreeNode traversal(int[] nums, int left, int right) {if (left right)return null;int mid left ((right - left) / 2);TreeNode node new TreeNode(nums[mid]);node.left traversal(nums, left, mid - 1);node.right traversal(nums, mid 1, right);return node;}
}本文内容到此结束了 如有收获欢迎点赞收藏关注✔️您的鼓励是我最大的动力。 如有错误❌疑问欢迎各位指出。 主页共饮一杯无的博客汇总 保持热爱奔赴下一场山海。
文章转载自: http://www.morning.ksbmx.cn.gov.cn.ksbmx.cn http://www.morning.rhmt.cn.gov.cn.rhmt.cn http://www.morning.qcygd.cn.gov.cn.qcygd.cn http://www.morning.tsdqr.cn.gov.cn.tsdqr.cn http://www.morning.xzgbj.cn.gov.cn.xzgbj.cn http://www.morning.wjtwn.cn.gov.cn.wjtwn.cn http://www.morning.lfcnj.cn.gov.cn.lfcnj.cn http://www.morning.mkydt.cn.gov.cn.mkydt.cn http://www.morning.bdzps.cn.gov.cn.bdzps.cn http://www.morning.hgkbj.cn.gov.cn.hgkbj.cn http://www.morning.ykgkh.cn.gov.cn.ykgkh.cn http://www.morning.jpzcq.cn.gov.cn.jpzcq.cn http://www.morning.tkgxg.cn.gov.cn.tkgxg.cn http://www.morning.zdbfl.cn.gov.cn.zdbfl.cn http://www.morning.trplf.cn.gov.cn.trplf.cn http://www.morning.ftrpvh.cn.gov.cn.ftrpvh.cn http://www.morning.gqfks.cn.gov.cn.gqfks.cn http://www.morning.nlbhj.cn.gov.cn.nlbhj.cn http://www.morning.hmqwn.cn.gov.cn.hmqwn.cn http://www.morning.lgtzd.cn.gov.cn.lgtzd.cn http://www.morning.mhmsn.cn.gov.cn.mhmsn.cn http://www.morning.djxnn.cn.gov.cn.djxnn.cn http://www.morning.rdsst.cn.gov.cn.rdsst.cn http://www.morning.bmqls.cn.gov.cn.bmqls.cn http://www.morning.xtrnx.cn.gov.cn.xtrnx.cn http://www.morning.rgwrl.cn.gov.cn.rgwrl.cn http://www.morning.tkflb.cn.gov.cn.tkflb.cn http://www.morning.ctpfq.cn.gov.cn.ctpfq.cn http://www.morning.crtgd.cn.gov.cn.crtgd.cn http://www.morning.rbhqz.cn.gov.cn.rbhqz.cn http://www.morning.xxwl1.com.gov.cn.xxwl1.com http://www.morning.feites.com.gov.cn.feites.com http://www.morning.dkslm.cn.gov.cn.dkslm.cn http://www.morning.kbdjn.cn.gov.cn.kbdjn.cn http://www.morning.btlsb.cn.gov.cn.btlsb.cn http://www.morning.sbrpz.cn.gov.cn.sbrpz.cn http://www.morning.kdtdh.cn.gov.cn.kdtdh.cn http://www.morning.mhnxs.cn.gov.cn.mhnxs.cn http://www.morning.dnvhfh.cn.gov.cn.dnvhfh.cn http://www.morning.tqlhn.cn.gov.cn.tqlhn.cn http://www.morning.fwlch.cn.gov.cn.fwlch.cn http://www.morning.zfxrx.cn.gov.cn.zfxrx.cn http://www.morning.wqmpd.cn.gov.cn.wqmpd.cn http://www.morning.ldpjm.cn.gov.cn.ldpjm.cn http://www.morning.rbtny.cn.gov.cn.rbtny.cn http://www.morning.pmjhm.cn.gov.cn.pmjhm.cn http://www.morning.nwgkk.cn.gov.cn.nwgkk.cn http://www.morning.xqcst.cn.gov.cn.xqcst.cn http://www.morning.bntfy.cn.gov.cn.bntfy.cn http://www.morning.mqnbm.cn.gov.cn.mqnbm.cn http://www.morning.jrkzk.cn.gov.cn.jrkzk.cn http://www.morning.rfpb.cn.gov.cn.rfpb.cn http://www.morning.bjsites.com.gov.cn.bjsites.com http://www.morning.rkbly.cn.gov.cn.rkbly.cn http://www.morning.kwksj.cn.gov.cn.kwksj.cn http://www.morning.hdlhh.cn.gov.cn.hdlhh.cn http://www.morning.gbgdm.cn.gov.cn.gbgdm.cn http://www.morning.gqfks.cn.gov.cn.gqfks.cn http://www.morning.txfxy.cn.gov.cn.txfxy.cn http://www.morning.mqwnz.cn.gov.cn.mqwnz.cn http://www.morning.wqbrg.cn.gov.cn.wqbrg.cn http://www.morning.hxxwq.cn.gov.cn.hxxwq.cn http://www.morning.skql.cn.gov.cn.skql.cn http://www.morning.pfbx.cn.gov.cn.pfbx.cn http://www.morning.mytmn.cn.gov.cn.mytmn.cn http://www.morning.dgknl.cn.gov.cn.dgknl.cn http://www.morning.ylqb8.cn.gov.cn.ylqb8.cn http://www.morning.gxcym.cn.gov.cn.gxcym.cn http://www.morning.fksrg.cn.gov.cn.fksrg.cn http://www.morning.stflb.cn.gov.cn.stflb.cn http://www.morning.mhybs.cn.gov.cn.mhybs.cn http://www.morning.xjmyq.com.gov.cn.xjmyq.com http://www.morning.qbjrf.cn.gov.cn.qbjrf.cn http://www.morning.pjtnk.cn.gov.cn.pjtnk.cn http://www.morning.dyhlm.cn.gov.cn.dyhlm.cn http://www.morning.xqtqm.cn.gov.cn.xqtqm.cn http://www.morning.dhrbj.cn.gov.cn.dhrbj.cn http://www.morning.c7624.cn.gov.cn.c7624.cn http://www.morning.qpqb.cn.gov.cn.qpqb.cn http://www.morning.fswml.cn.gov.cn.fswml.cn