2018年3月11日

016 3Sum Closest 最接近的三数之和

摘要: Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. 阅读全文

posted @ 2018-03-11 21:39 lina2014 阅读(118) 评论(0) 推荐(0) 编辑

排序算法

摘要: 排序算法总结:插入排序:直接插入排序,二分(折半)插入排序,希尔排序交换排序:冒泡排序,快速排序选择排序:简单选择排序,堆排序归并排序基数排序计数排序 1、插入排序 (1)直接插入排序 Java实现: package com.mian.sort; public class InsertSort { 阅读全文

posted @ 2018-03-11 11:56 lina2014 阅读(192) 评论(0) 推荐(0) 编辑

导航