摘要:
package test;import java.util.Scanner;public class JavaSort { public static void quickSort(int a[], int left, int right) { if (a == null || a.length ... 阅读全文
摘要:
给定两个串,均由最小字母组成。求这两个串的最大公共字串LCS(Longest Common Substring)。使用动态规划解决。#include #include #include #include using namespace std;#define MAX 100int LCS(strin... 阅读全文
摘要:
DataThe zip file containing the data can be downloaded here:specdata.zip [2.4MB]The zip file contains 332 comma-separated-value (CSV) files containing... 阅读全文