码迷,mamicode.com
首页 > 其他好文 > 详细

Data Structure and Algorithm

时间:2017-12-28 11:44:16      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:return   arc   recursion   tin   items   lap   length   targe   hashmap   

Array & ArrayList

String

LinkedList

Stack & Queue

Recursion

1. Knapsack non-repeating items.    Not Bug Free

  思路一:最直接的recursion.

public static boolean exist(int[] nums, int target, int index) {
    	 if (target == 0) {
	     return true;
	 }
	 if (index == nums.length || target < 0) {
	     return false;
	 }
	 return exist(nums, target - nums[index], index++) || exist(nums, target, index++);
    }

 

  

 

Tree & Graph

Binary Search

Sort

HashMap

 

Data Structure and Algorithm

标签:return   arc   recursion   tin   items   lap   length   targe   hashmap   

原文地址:https://www.cnblogs.com/leiluoray/p/8129703.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!