自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (4)
  • 收藏
  • 关注

原创 升序降序数组查找最大值

折半查找变种算法实现public class Main { public static void main(String[] args) { int[] attr = { 1, 2, 3, 5, 9, 6, 4 }; System.out.println(find(attr)); } public static int find(int[] attr) { int s = 0

2017-11-29 11:08:55 2554 1

原创 快速排序

快速排序算法实现import java.util.Arrays; public class Main { public static void main(String[] args) { int[] attr = { 8, 5, 4, 2, 3, 9 }; sort(attr, 0, attr.length - 1); System.out.println(Arrays.toSt

2017-11-28 17:43:22 176

原创 折半查找

折半查找算法实现public class Main { public static void main(String[] args) { int[] attr = { 1, 3, 4, 6, 7, 9 }; System.out.println(find(attr, 9)); System.out.println(find(attr, 0, attr.length, 9)); }

2017-11-28 17:22:19 150

原创 hello world

public class Main { public static void main(String[] args) { System.out.println("hello world!!"); } }

2017-11-28 15:06:37 298

刘汝佳ACM讲义刘汝佳ACM讲义

刘汝佳ACM讲义刘汝佳ACM讲义刘汝佳ACM讲义刘汝佳ACM讲义刘汝佳ACM讲义刘汝佳ACM讲义刘汝佳ACM讲义

2010-05-04

ACM常用算法函数代码

ACM小组内部预定函数、、、、、、、、、、、、、、、、、、、、、

2010-05-04

浙大acm400多道题的解题报告

zoj源代码很实用!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

2010-05-04

杭电acm解题报告源代码

2000~2099解题报告!!资源很强大很适合初学者!!!

2010-05-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除