摘要:
public class Main { static boolean judge(int[] arr, int start, int end){ if (start >= end) return true; int i = end; int root = arr[end]; //i的位置是第一个大于 阅读全文
摘要:
#include #include using namespace std; struct string { char str[1005]; int len; }s[10000]; int main() { int k=0; int max=0,min=1001; while(scanf("%s",s[k].str)!=EOF) {... 阅读全文
摘要:
#include<stdio.h>#include<stdlib.h>#include<string.h> using namespace std; struct string{ int len; char str[1005];}; int cmp(const void *str1,const vo 阅读全文