摘要: QuickSortJava Code: 1 import java.util.*; 2 public class quickSort{ 3 public static void main(String [] args){ 4 int [] arr = new int[]{4,... 阅读全文
posted @ 2015-12-12 09:33 Dylan_Java_NYC 阅读(196) 评论(0) 推荐(0)
摘要: 原题链接在这里:https://leetcode.com/problems/two-sum/ 题目: Given an array of integers, return indices of the two numbers such that they add up to a specific t 阅读全文
posted @ 2015-12-12 04:50 Dylan_Java_NYC 阅读(378) 评论(0) 推荐(0)