#include typedef struct { int coef; int index; }datatype ; typedef struct { datatype *elem; int length; }SeqList; void BuildPoly(SeqList &s) { s.elem=... ...
分类:
其他好文 时间:
2017-03-13 16:19:35
阅读次数:
180
class B { public: //隐式转换 B(int i) { cout 0; } //转换函数 operator string() { return "class_string"; } private: int data; }; int main() { B inst =... ...
分类:
其他好文 时间:
2017-03-13 16:14:45
阅读次数:
148
public class Main { public static void main(String[] ages) { String[] operate = new String[]{"+", "-", "×", "÷"}; int[] numbers = new int[100]; for (i ...
分类:
其他好文 时间:
2017-03-13 15:05:48
阅读次数:
137
官网:http://docs.jinkan.org/docs/flask/patterns/fileuploads.html ...
分类:
Web程序 时间:
2017-03-13 14:32:13
阅读次数:
413
#include using namespace std; int a[20]; int main() { int n; while(cin>>n) { int i,j,max,m1=0,min,m2=0;//如果将这几个值得定义写在while的上面,就会出错。 for(i=0;i>a[i]; ma... ...
分类:
其他好文 时间:
2017-03-13 13:28:11
阅读次数:
148
import java.text.DecimalFormat;import java.util.Scanner;public class Zhidao { public static void main(String[] args) { String condition = ""; Zhidao z... ...
分类:
编程语言 时间:
2017-03-13 12:33:29
阅读次数:
198
package test.tttt; import java.io.File; import java.util.ArrayList; import java.util.List; public class FileRename { public static void main(String[] ... ...
分类:
编程语言 时间:
2017-03-13 11:42:38
阅读次数:
219
两者都可用来在定义比较方法,然后用在排序中。 Comparable是类本身继承的接口 Comparator实在类外定义一个排序的类 比较而言,觉得Comparator更灵活一些,但是Comparable方便一些。 举个栗子: 输出: 对于一些已经写好的类,比如String,我们当然不能去修改它的co ...
分类:
其他好文 时间:
2017-03-13 11:37:06
阅读次数:
207
[SPOJ8222]Substrings 试题描述 You are given a string S which consists of 250000 lowercase latin letters at most. We define F(x) as the maximal number of t ...
分类:
其他好文 时间:
2017-03-13 11:17:35
阅读次数:
210