上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 28 下一页
摘要: http://codingbat.com/prob/p169605 阅读全文
posted @ 2017-02-14 19:11 友哥 阅读(246) 评论(0) 推荐(0) 编辑
摘要: http://codingbat.com/prob/p199368 public boolean groupSum6(int start, int[] nums, int target) { if( start >= nums.length){ return target==0; } if(nums 阅读全文
posted @ 2017-02-14 18:50 友哥 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 自带测试 http://codingbat.com/prob/p145416 阅读全文
posted @ 2017-02-14 18:34 友哥 阅读(582) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; class Counter { } class Groundhog2 { int ghNumber; Groundhog2(int n) { ghNumber = n; } public int hashCode() { return ghNumber; } public boolean equals(Object o) {... 阅读全文
posted @ 2017-02-12 19:54 友哥 阅读(238) 评论(0) 推荐(0) 编辑
摘要: package com.alibaba.druid.bvt.sql.mysql; import java.util.List; import org.junit.Assert; import com.alibaba.druid.sql.MysqlTest; import com.alibaba.druid.sql.ast.SQLStatement; import com.alibaba.d... 阅读全文
posted @ 2017-02-06 19:02 友哥 阅读(3172) 评论(0) 推荐(0) 编辑
摘要: 如题 阅读全文
posted @ 2017-02-02 21:21 友哥 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 不行就算了,其实也无所谓,关键是老被人撩哦。 阅读全文
posted @ 2017-01-22 13:34 友哥 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 自己实现的堆排序就是好 阅读全文
posted @ 2017-01-19 00:34 友哥 阅读(151) 评论(0) 推荐(0) 编辑
摘要: #include #include //int a[]={1000,10000,9,10,30,20,50,23,90,100,10}; int a[]={10,9,8,7,6,5}; int length=sizeof(a)/sizeof(int); int swap(int start, int stop){ int temp; temp=a[start]; ... 阅读全文
posted @ 2017-01-18 19:33 友哥 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 虽然这种算法烂大街,但是实现一个简洁、正确的算法还是不容易的。 阅读全文
posted @ 2017-01-18 10:49 友哥 阅读(150) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 28 下一页