06 2015 档案
摘要:#include<iostream> #include<stdio.h> #include<string.h> using namespace std; typedef struct BiNide{ char data; struct BiNide *lchild,*rchild; }BiTNode
阅读全文
摘要:#include<iostream> #include<stdio.h> #include<string.h> #define OK 1 #define OVERFLOW -2 #define ERROR 0 #define MAXSIZE 255 using namespace std; type
阅读全文
摘要:#include<iostream> #include<stdio.h> #include<string.h> #define MAXSIZE 255 #define ERROR 0 #define OVERFLOW -1 #define OK 1 using namespace std; type
阅读全文
摘要:题意:编写一个方法,检测两个单词是否互为变位词。如果在不记顺序的情况下两个单词包含完全相同的字母,则称这两个单词互为变位词(anagram)。 import java.util.Arrays; import java.util.Scanner; public class E9_11{ // publ
阅读全文