我的代码在github上,https://github.com/WINTERFELLS/LeetCode-Answers 这里只提供个人的解题思路,不一定是最好的。 Problems 21-40 合并两个排好序的链表,递归比较好一点,每次返回当前的结点。 给定括号的个数,生成所有的可以的括号的组合方 ...
分类:
其他好文 时间:
2017-12-08 23:05:53
阅读次数:
201
import java.util.Scanner;
/**
*
* @author luozhonghua
*
*/
public class charSearchAndSort {
static void kuaiSu(char[] a,int left,int right) //字符快速排序
{
int f,l,r...
分类:
其他好文 时间:
2014-11-05 14:55:15
阅读次数:
138