博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
416. Partition Equal Subset Sum
阅读量:5077 次
发布时间:2019-06-12

本文共 850 字,大约阅读时间需要 2 分钟。

sort之后 看有没有可以等于sum/2的

 

1 class Solution { 2     public boolean canPartition(int[] nums) { 3         if(nums.length == 0) return false; 4         int sum = 0; 5         for(int i = 0; i < nums.length; i++){ 6             sum += nums[i]; 7         } 8         Arrays.sort(nums); 9         if(nums[nums.length - 1] > sum/2) return false;10         if(sum % 2 != 0) return false;11         return dfs(nums, sum/2, nums.length-1);12         13     }14     15     public boolean dfs(int[] nums, int target, int start){16         if(target == 0) return true;17         if(target < 0) return false;18         for(int i = start; i >= 0; i--){19             if(dfs(nums, target - nums[i], i-1)){  //这便是i-1!!20                 return true;21             }22         }23         return false;24     }25     26 }

 

转载于:https://www.cnblogs.com/goPanama/p/9874947.html

你可能感兴趣的文章
阿里云服务器CentOS6.9安装Mysql
查看>>
剑指offer系列6:数值的整数次方
查看>>
js 过滤敏感词
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
bcb ole拖拽功能的实现
查看>>
生活大爆炸之何为光速
查看>>
bzoj 2456: mode【瞎搞】
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
[GraphQL] Reuse Query Fields with GraphQL Fragments
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
两种最常用的Sticky footer布局方式
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Java程序IP v6与IP v4的设置
查看>>
RUP(Rational Unified Process),统一软件开发过程
查看>>