├── Analysis and statistics of movie datasets ├── Data processing results │ ├── Comment.txt │ ├── Country.txt │ ├── Score.txt │ └── Type.txt ├── National Film quantity distribution statistics │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── CountryMain.java │ │ ├── CountryMap.java │ │ ├── CountryReduce.java │ │ └── MapUtils.java │ │ └── resources │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── Ranking of total film reviews │ ├── Ranking of total film reviews.iml │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── CommentMain.java │ │ ├── CommentMap.java │ │ └── MapUtils.java │ │ └── resources │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── Statistics of distribution proportion of each score │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── MapUtils.java │ │ ├── ScoreMain.java │ │ ├── ScoreMap.java │ │ └── ScoreReduce.java │ │ └── resources │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── Statistics of distribution proportion of film types │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── MapUtils.java │ │ │ ├── TypeMain.java │ │ │ ├── TypeMap.java │ │ │ └── TypeReduce.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ ├── classes │ │ ├── MapUtils$1.class │ │ ├── MapUtils.class │ │ ├── TypeMain.class │ │ ├── TypeMap.class │ │ ├── TypeReduce.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml │ │ ├── maven-archiver │ │ └── pom.properties │ │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ ├── compile │ │ │ └── default-compile │ │ │ │ ├── createdFiles.lst │ │ │ │ └── inputFiles.lst │ │ │ └── testCompile │ │ │ └── default-testCompile │ │ │ └── inputFiles.lst │ │ └── wxg-Type-1.0-SNAPSHOT.jar ├── 国家.txt ├── 类型.txt ├── 评价.txt └── 评分.txt ├── Anchor data statistics ├── Part I -- Extract data │ ├── video_rating.log │ ├── zhuboClean.jar │ └── zhuboClean │ │ ├── .idea │ │ ├── compiler.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── workspace.xml │ │ ├── pom.xml │ │ ├── src │ │ └── main │ │ │ └── java │ │ │ ├── DataCleanJob.java │ │ │ └── DataCleanMap.java │ │ ├── target │ │ ├── classes │ │ │ ├── DataCleanJob.class │ │ │ └── DataCleanMap.class │ │ ├── maven-archiver │ │ │ └── pom.properties │ │ ├── maven-status │ │ │ └── maven-compiler-plugin │ │ │ │ ├── compile │ │ │ │ └── default-compile │ │ │ │ │ ├── createdFiles.lst │ │ │ │ │ └── inputFiles.lst │ │ │ │ └── testCompile │ │ │ │ └── default-testCompile │ │ │ │ └── inputFiles.lst │ │ └── zhuboClean-1.0-SNAPSHOT.jar │ │ └── zhuboClean.iml └── Part II -- Summation sort │ ├── zhuboCensus-1.0.jar │ └── zhuboCensus │ ├── .idea │ ├── compiler.xml │ ├── encodings.xml │ ├── misc.xml │ └── workspace.xml │ ├── pom.xml │ ├── src │ └── main │ │ └── java │ │ ├── VideoInfoJob.java │ │ ├── VideoInfoMap.java │ │ ├── VideoInfoReduce.java │ │ └── VideoInfoWritable.java │ ├── target │ ├── classes │ │ ├── VideoInfoJob.class │ │ ├── VideoInfoMap.class │ │ ├── VideoInfoReduce.class │ │ └── VideoInfoWritable.class │ ├── maven-archiver │ │ └── pom.properties │ ├── maven-status │ │ └── maven-compiler-plugin │ │ │ ├── compile │ │ │ └── default-compile │ │ │ │ ├── createdFiles.lst │ │ │ │ └── inputFiles.lst │ │ │ └── testCompile │ │ │ └── default-testCompile │ │ │ └── inputFiles.lst │ └── zhuboCensus-1.0.jar │ └── zhuboCensus.iml ├── JD mobile data statistics ├── Brand sales related data statistics │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ ├── InfoWritable.java │ │ │ ├── Map.java │ │ │ ├── PhoneMain.java │ │ │ └── Reduce.java │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ │ └── test │ │ └── java │ │ └── dwd.java ├── Data processing results │ └── 京东手机数据统计结果.txt └── 京东手机数据.txt ├── Java job analysis statistics ├── Data processing results │ ├── 公司规模类型统计排序结果.txt │ ├── 各工作地区的平均工资和占比统计排序结果.txt │ ├── 学历要求统计排序结果.txt │ ├── 岗位-公司-工资情况统计.txt │ ├── 工作经验要求统计排序结果.txt │ └── 技能标签统计排序结果.txt ├── companytype-count │ ├── .idea │ │ ├── compiler.xml │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_10_5_1.xml │ │ │ ├── Maven__com_fasterxml_jackson_jaxrs_jackson_jaxrs_base_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_jaxrs_jackson_jaxrs_json_provider_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_module_jackson_module_jaxb_annotations_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_woodstox_woodstox_core_5_3_0.xml │ │ │ ├── Maven__com_github_stephenc_jcip_jcip_annotations_1_0_1.xml │ │ │ ├── Maven__com_google_code_findbugs_jsr305_3_0_2.xml │ │ │ ├── Maven__com_google_code_gson_gson_2_2_4.xml │ │ │ ├── Maven__com_google_guava_failureaccess_1_0.xml │ │ │ ├── Maven__com_google_guava_guava_27_0_jre.xml │ │ │ ├── Maven__com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava.xml │ │ │ ├── Maven__com_google_j2objc_j2objc_annotations_1_1.xml │ │ │ ├── Maven__com_google_protobuf_protobuf_java_2_5_0.xml │ │ │ ├── Maven__com_google_re2j_re2j_1_1.xml │ │ │ ├── Maven__com_jcraft_jsch_0_1_55.xml │ │ │ ├── Maven__com_nimbusds_nimbus_jose_jwt_9_8_1.xml │ │ │ ├── Maven__com_squareup_okhttp_okhttp_2_7_5.xml │ │ │ ├── Maven__com_squareup_okio_okio_1_6_0.xml │ │ │ ├── Maven__com_sun_jersey_jersey_client_1_19.xml │ │ │ ├── Maven__com_sun_jersey_jersey_core_1_19.xml │ │ │ ├── Maven__com_sun_jersey_jersey_json_1_19.xml │ │ │ ├── Maven__com_sun_jersey_jersey_server_1_19.xml │ │ │ ├── Maven__com_sun_jersey_jersey_servlet_1_19.xml │ │ │ ├── Maven__com_sun_xml_bind_jaxb_impl_2_2_3_1.xml │ │ │ ├── Maven__com_thoughtworks_paranamer_paranamer_2_3.xml │ │ │ ├── Maven__commons_beanutils_commons_beanutils_1_9_4.xml │ │ │ ├── Maven__commons_cli_commons_cli_1_2.xml │ │ │ ├── Maven__commons_codec_commons_codec_1_11.xml │ │ │ ├── Maven__commons_collections_commons_collections_3_2_2.xml │ │ │ ├── Maven__commons_daemon_commons_daemon_1_0_13.xml │ │ │ ├── Maven__commons_io_commons_io_2_8_0.xml │ │ │ ├── Maven__commons_logging_commons_logging_1_1_3.xml │ │ │ ├── Maven__commons_net_commons_net_3_6.xml │ │ │ ├── Maven__dnsjava_dnsjava_2_1_7.xml │ │ │ ├── Maven__io_netty_netty_3_10_6_Final.xml │ │ │ ├── Maven__io_netty_netty_all_4_1_61_Final.xml │ │ │ ├── Maven__io_netty_netty_buffer_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_codec_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_common_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_handler_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_resolver_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_transport_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_transport_native_epoll_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_transport_native_unix_common_4_1_42_Final.xml │ │ │ ├── Maven__jakarta_activation_jakarta_activation_api_1_2_1.xml │ │ │ ├── Maven__jakarta_xml_bind_jakarta_xml_bind_api_2_3_2.xml │ │ │ ├── Maven__javax_servlet_javax_servlet_api_3_1_0.xml │ │ │ ├── Maven__javax_servlet_jsp_jsp_api_2_1.xml │ │ │ ├── Maven__javax_ws_rs_jsr311_api_1_1_1.xml │ │ │ ├── Maven__javax_xml_bind_jaxb_api_2_2_11.xml │ │ │ ├── Maven__junit_junit_4_12.xml │ │ │ ├── Maven__log4j_log4j_1_2_17.xml │ │ │ ├── Maven__net_minidev_accessors_smart_2_4_2.xml │ │ │ ├── Maven__net_minidev_json_smart_2_4_2.xml │ │ │ ├── Maven__org_apache_avro_avro_1_7_7.xml │ │ │ ├── Maven__org_apache_commons_commons_compress_1_19.xml │ │ │ ├── Maven__org_apache_commons_commons_configuration2_2_1_1.xml │ │ │ ├── Maven__org_apache_commons_commons_lang3_3_7.xml │ │ │ ├── Maven__org_apache_commons_commons_math3_3_1_1.xml │ │ │ ├── Maven__org_apache_commons_commons_text_1_4.xml │ │ │ ├── Maven__org_apache_curator_curator_client_4_2_0.xml │ │ │ ├── Maven__org_apache_curator_curator_framework_4_2_0.xml │ │ │ ├── Maven__org_apache_curator_curator_recipes_4_2_0.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_annotations_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_auth_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_client_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_common_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_hdfs_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_hdfs_client_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_mapreduce_client_common_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_mapreduce_client_core_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_mapreduce_client_jobclient_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_yarn_api_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_yarn_client_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_yarn_common_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_thirdparty_hadoop_shaded_guava_1_1_1.xml │ │ │ ├── Maven__org_apache_hadoop_thirdparty_hadoop_shaded_protobuf_3_7_1_1_1.xml │ │ │ ├── Maven__org_apache_htrace_htrace_core4_4_1_0_incubating.xml │ │ │ ├── Maven__org_apache_httpcomponents_httpclient_4_5_13.xml │ │ │ ├── Maven__org_apache_httpcomponents_httpcore_4_4_13.xml │ │ │ ├── Maven__org_apache_kerby_kerb_admin_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_client_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_common_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_core_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_crypto_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_identity_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_server_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_simplekdc_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_util_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_asn1_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_config_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_pkix_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_util_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_xdr_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_token_provider_1_0_1.xml │ │ │ ├── Maven__org_apache_yetus_audience_annotations_0_5_0.xml │ │ │ ├── Maven__org_apache_zookeeper_zookeeper_3_5_6.xml │ │ │ ├── Maven__org_apache_zookeeper_zookeeper_jute_3_5_6.xml │ │ │ ├── Maven__org_checkerframework_checker_qual_2_5_2.xml │ │ │ ├── Maven__org_codehaus_jackson_jackson_core_asl_1_9_2.xml │ │ │ ├── Maven__org_codehaus_jackson_jackson_jaxrs_1_9_2.xml │ │ │ ├── Maven__org_codehaus_jackson_jackson_mapper_asl_1_9_2.xml │ │ │ ├── Maven__org_codehaus_jackson_jackson_xc_1_9_2.xml │ │ │ ├── Maven__org_codehaus_jettison_jettison_1_1.xml │ │ │ ├── Maven__org_codehaus_mojo_animal_sniffer_annotations_1_17.xml │ │ │ ├── Maven__org_codehaus_woodstox_stax2_api_4_2_1.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_client_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_http_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_io_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_security_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_server_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_servlet_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_util_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_util_ajax_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_webapp_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_xml_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_websocket_websocket_api_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_websocket_websocket_client_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_websocket_websocket_common_9_4_40_v20210413.xml │ │ │ ├── Maven__org_fusesource_leveldbjni_leveldbjni_all_1_8.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ │ ├── Maven__org_jline_jline_3_9_0.xml │ │ │ ├── Maven__org_ow2_asm_asm_8_0_1.xml │ │ │ ├── Maven__org_slf4j_slf4j_api_1_7_30.xml │ │ │ ├── Maven__org_slf4j_slf4j_log4j12_1_7_30.xml │ │ │ └── Maven__org_xerial_snappy_snappy_java_1_1_8_2.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── companytype-count.iml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── CompanyTypeMain.java │ │ │ ├── CompanyTypeMap.java │ │ │ └── CompanyTypeReduce.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ └── classes │ │ ├── CompanyTypeMain.class │ │ ├── CompanyTypeMap.class │ │ ├── CompanyTypeReduce.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── education-count │ ├── .idea │ │ ├── compiler.xml │ │ ├── dictionaries │ │ │ └── Administrator.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── uiDesigner.xml │ │ └── workspace.xml │ ├── education-count.iml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── EducationMain.java │ │ │ ├── EducationMap.java │ │ │ ├── EducationReduce.java │ │ │ └── EducationSort.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ └── classes │ │ ├── EducationMain.class │ │ ├── EducationMap.class │ │ ├── EducationReduce.class │ │ ├── EducationSort$1.class │ │ ├── EducationSort.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── skill-label-count │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── SkillLabelMain.java │ │ │ ├── SkillLabelMap.java │ │ │ ├── SkillLabelReduce.java │ │ │ └── SkillLabelSort.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ └── classes │ │ ├── SkillLabelMain.class │ │ ├── SkillLabelMap.class │ │ ├── SkillLabelReduce.class │ │ ├── SkillLabelSort$1.class │ │ ├── SkillLabelSort.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── workarea-salary-count │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── JavaInfo.java │ │ │ ├── WorkareaMain.java │ │ │ ├── WorkareaMap.java │ │ │ ├── WorkareaReduce.java │ │ │ └── WorkareaSort.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ └── classes │ │ ├── JavaInfo.class │ │ ├── WorkareaMain.class │ │ ├── WorkareaMap.class │ │ ├── WorkareaReduce.class │ │ ├── WorkareaSort$1.class │ │ ├── WorkareaSort.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── workyear-count │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── WorkyearMain.java │ │ │ ├── WorkyearMap.java │ │ │ ├── WorkyearReduce.java │ │ │ └── WorkyearSort.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ └── classes │ │ ├── WorkyearMain.class │ │ ├── WorkyearMap.class │ │ ├── WorkyearReduce.class │ │ ├── WorkyearSort$1.class │ │ ├── WorkyearSort.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── 前途无忧数据集.txt └── 拉勾网数据集.txt ├── LICENSE ├── README.md ├── Ranking statistics of Chinese Universities ├── Average score ranking of school running level │ ├── Average score ranking of school running level.jar │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── Map1.java │ │ ├── MapSorts.java │ │ ├── Reduce.java │ │ ├── UniversityInfo.java │ │ └── UniversityMain.java │ │ └── resources │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── Data processing results │ ├── 办学层次统计排序结果.txt │ ├── 各办学层次的平均得分排名结果.txt │ └── 星级排名的统计排序结果.txt ├── Star statistics │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_annotations_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_core_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_core_jackson_databind_2_10_5_1.xml │ │ │ ├── Maven__com_fasterxml_jackson_jaxrs_jackson_jaxrs_base_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_jaxrs_jackson_jaxrs_json_provider_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_jackson_module_jackson_module_jaxb_annotations_2_10_5.xml │ │ │ ├── Maven__com_fasterxml_woodstox_woodstox_core_5_3_0.xml │ │ │ ├── Maven__com_github_stephenc_jcip_jcip_annotations_1_0_1.xml │ │ │ ├── Maven__com_google_code_findbugs_jsr305_3_0_2.xml │ │ │ ├── Maven__com_google_code_gson_gson_2_2_4.xml │ │ │ ├── Maven__com_google_guava_failureaccess_1_0.xml │ │ │ ├── Maven__com_google_guava_guava_27_0_jre.xml │ │ │ ├── Maven__com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava.xml │ │ │ ├── Maven__com_google_j2objc_j2objc_annotations_1_1.xml │ │ │ ├── Maven__com_google_protobuf_protobuf_java_2_5_0.xml │ │ │ ├── Maven__com_google_re2j_re2j_1_1.xml │ │ │ ├── Maven__com_jcraft_jsch_0_1_55.xml │ │ │ ├── Maven__com_nimbusds_nimbus_jose_jwt_9_8_1.xml │ │ │ ├── Maven__com_squareup_okhttp_okhttp_2_7_5.xml │ │ │ ├── Maven__com_squareup_okio_okio_1_6_0.xml │ │ │ ├── Maven__com_sun_jersey_jersey_client_1_19.xml │ │ │ ├── Maven__com_sun_jersey_jersey_core_1_19.xml │ │ │ ├── Maven__com_sun_jersey_jersey_json_1_19.xml │ │ │ ├── Maven__com_sun_jersey_jersey_server_1_19.xml │ │ │ ├── Maven__com_sun_jersey_jersey_servlet_1_19.xml │ │ │ ├── Maven__com_sun_xml_bind_jaxb_impl_2_2_3_1.xml │ │ │ ├── Maven__com_thoughtworks_paranamer_paranamer_2_3.xml │ │ │ ├── Maven__commons_beanutils_commons_beanutils_1_9_4.xml │ │ │ ├── Maven__commons_cli_commons_cli_1_2.xml │ │ │ ├── Maven__commons_codec_commons_codec_1_11.xml │ │ │ ├── Maven__commons_collections_commons_collections_3_2_2.xml │ │ │ ├── Maven__commons_daemon_commons_daemon_1_0_13.xml │ │ │ ├── Maven__commons_io_commons_io_2_8_0.xml │ │ │ ├── Maven__commons_logging_commons_logging_1_1_3.xml │ │ │ ├── Maven__commons_net_commons_net_3_6.xml │ │ │ ├── Maven__dnsjava_dnsjava_2_1_7.xml │ │ │ ├── Maven__io_netty_netty_3_10_6_Final.xml │ │ │ ├── Maven__io_netty_netty_all_4_1_61_Final.xml │ │ │ ├── Maven__io_netty_netty_buffer_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_codec_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_common_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_handler_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_resolver_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_transport_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_transport_native_epoll_4_1_42_Final.xml │ │ │ ├── Maven__io_netty_netty_transport_native_unix_common_4_1_42_Final.xml │ │ │ ├── Maven__jakarta_activation_jakarta_activation_api_1_2_1.xml │ │ │ ├── Maven__jakarta_xml_bind_jakarta_xml_bind_api_2_3_2.xml │ │ │ ├── Maven__javax_servlet_javax_servlet_api_3_1_0.xml │ │ │ ├── Maven__javax_servlet_jsp_jsp_api_2_1.xml │ │ │ ├── Maven__javax_ws_rs_jsr311_api_1_1_1.xml │ │ │ ├── Maven__javax_xml_bind_jaxb_api_2_2_11.xml │ │ │ ├── Maven__junit_junit_4_12.xml │ │ │ ├── Maven__log4j_log4j_1_2_17.xml │ │ │ ├── Maven__net_minidev_accessors_smart_2_4_2.xml │ │ │ ├── Maven__net_minidev_json_smart_2_4_2.xml │ │ │ ├── Maven__org_apache_avro_avro_1_7_7.xml │ │ │ ├── Maven__org_apache_commons_commons_compress_1_19.xml │ │ │ ├── Maven__org_apache_commons_commons_configuration2_2_1_1.xml │ │ │ ├── Maven__org_apache_commons_commons_lang3_3_7.xml │ │ │ ├── Maven__org_apache_commons_commons_math3_3_1_1.xml │ │ │ ├── Maven__org_apache_commons_commons_text_1_4.xml │ │ │ ├── Maven__org_apache_curator_curator_client_4_2_0.xml │ │ │ ├── Maven__org_apache_curator_curator_framework_4_2_0.xml │ │ │ ├── Maven__org_apache_curator_curator_recipes_4_2_0.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_annotations_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_auth_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_client_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_common_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_hdfs_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_hdfs_client_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_mapreduce_client_common_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_mapreduce_client_core_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_mapreduce_client_jobclient_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_yarn_api_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_yarn_client_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_hadoop_yarn_common_3_3_1.xml │ │ │ ├── Maven__org_apache_hadoop_thirdparty_hadoop_shaded_guava_1_1_1.xml │ │ │ ├── Maven__org_apache_hadoop_thirdparty_hadoop_shaded_protobuf_3_7_1_1_1.xml │ │ │ ├── Maven__org_apache_htrace_htrace_core4_4_1_0_incubating.xml │ │ │ ├── Maven__org_apache_httpcomponents_httpclient_4_5_13.xml │ │ │ ├── Maven__org_apache_httpcomponents_httpcore_4_4_13.xml │ │ │ ├── Maven__org_apache_kerby_kerb_admin_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_client_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_common_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_core_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_crypto_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_identity_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_server_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_simplekdc_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerb_util_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_asn1_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_config_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_pkix_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_util_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_kerby_xdr_1_0_1.xml │ │ │ ├── Maven__org_apache_kerby_token_provider_1_0_1.xml │ │ │ ├── Maven__org_apache_yetus_audience_annotations_0_5_0.xml │ │ │ ├── Maven__org_apache_zookeeper_zookeeper_3_5_6.xml │ │ │ ├── Maven__org_apache_zookeeper_zookeeper_jute_3_5_6.xml │ │ │ ├── Maven__org_checkerframework_checker_qual_2_5_2.xml │ │ │ ├── Maven__org_codehaus_jackson_jackson_core_asl_1_9_2.xml │ │ │ ├── Maven__org_codehaus_jackson_jackson_jaxrs_1_9_2.xml │ │ │ ├── Maven__org_codehaus_jackson_jackson_mapper_asl_1_9_2.xml │ │ │ ├── Maven__org_codehaus_jackson_jackson_xc_1_9_2.xml │ │ │ ├── Maven__org_codehaus_jettison_jettison_1_1.xml │ │ │ ├── Maven__org_codehaus_mojo_animal_sniffer_annotations_1_17.xml │ │ │ ├── Maven__org_codehaus_woodstox_stax2_api_4_2_1.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_client_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_http_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_io_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_security_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_server_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_servlet_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_util_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_util_ajax_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_webapp_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_jetty_xml_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_websocket_websocket_api_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_websocket_websocket_client_9_4_40_v20210413.xml │ │ │ ├── Maven__org_eclipse_jetty_websocket_websocket_common_9_4_40_v20210413.xml │ │ │ ├── Maven__org_fusesource_leveldbjni_leveldbjni_all_1_8.xml │ │ │ ├── Maven__org_hamcrest_hamcrest_core_1_3.xml │ │ │ ├── Maven__org_jline_jline_3_9_0.xml │ │ │ ├── Maven__org_ow2_asm_asm_8_0_1.xml │ │ │ ├── Maven__org_slf4j_slf4j_api_1_7_30.xml │ │ │ ├── Maven__org_slf4j_slf4j_log4j12_1_7_30.xml │ │ │ └── Maven__org_xerial_snappy_snappy_java_1_1_8_2.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ ├── Star statistics.jar │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── Map1.java │ │ │ ├── MapSorts.java │ │ │ ├── Reduce.java │ │ │ └── UniversityMain.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ ├── target │ │ └── classes │ │ │ ├── Map1.class │ │ │ ├── MapSorts$1.class │ │ │ ├── MapSorts.class │ │ │ ├── Reduce.class │ │ │ ├── UniversityMain.class │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── zff-university.iml ├── Statistics of school running levels │ ├── Statistics of school running levels.jar │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── Map1.java │ │ │ ├── MapSorts.java │ │ │ ├── Reduce.java │ │ │ └── UniversityMain.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ └── classes │ │ ├── META-INF │ │ └── zff-university.kotlin_module │ │ ├── Map1.class │ │ ├── MapSorts$1.class │ │ ├── MapSorts.class │ │ ├── Reduce.class │ │ ├── UniversityMain.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml └── university.txt ├── Score line statistics of 2020 postgraduate entrance examination Universities ├── Data processing results │ ├── 2020年各专业考研平均分数线统计.txt │ ├── 2020年各大学考研平均分数线统计.txt │ ├── 2020年考研各学校开放专业数量统计.txt │ ├── 2020自定义大学查询各专业分数线统计(北大).txt │ └── 2020自定义大学查询各专业分数线统计(清华).txt ├── Query of scores of each major in the University │ ├── Query-of-scores-of-each-major-in-the-University-1.0.jar │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── Main.java │ │ │ ├── MyMap.java │ │ │ └── University.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ ├── Query-of-scores-of-each-major-in-the-University-1.0.jar │ │ ├── classes │ │ ├── Main.class │ │ ├── MyMap$1.class │ │ ├── MyMap.class │ │ ├── University.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml │ │ ├── maven-archiver │ │ └── pom.properties │ │ └── maven-status │ │ └── maven-compiler-plugin │ │ ├── compile │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── testCompile │ │ └── default-testCompile │ │ └── inputFiles.lst ├── Statistics of College average score │ ├── .idea │ │ ├── compiler.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ └── workspace.xml │ ├── Statistics of College average score.iml │ ├── Statistics-of-College-average-score-1.0.jar │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── Main.java │ │ ├── MyMap.java │ │ └── MyReduce.java │ │ └── resources │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── Statistics of professional average score │ ├── Statistics-of-professional-average-score-1.0.jar │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── Main.java │ │ ├── MyMap.java │ │ └── MyReduce.java │ │ └── resources │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml ├── University Professional Statistics Ranking │ ├── University-rofessional-Statistics-Ranking-1.0.jar │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ ├── Main.java │ │ │ ├── MyMap.java │ │ │ └── MyReduce.java │ │ │ └── resources │ │ │ ├── core-site.xml │ │ │ ├── log4j.properties │ │ │ └── mapred-site.xml │ └── target │ │ ├── University-rofessional-Statistics-Ranking-1.0.jar │ │ ├── classes │ │ ├── Main.class │ │ ├── MyMap.class │ │ ├── MyReduce$1.class │ │ ├── MyReduce.class │ │ ├── core-site.xml │ │ ├── log4j.properties │ │ └── mapred-site.xml │ │ ├── maven-archiver │ │ └── pom.properties │ │ └── maven-status │ │ └── maven-compiler-plugin │ │ ├── compile │ │ └── default-compile │ │ │ ├── createdFiles.lst │ │ │ └── inputFiles.lst │ │ └── testCompile │ │ └── default-testCompile │ │ └── inputFiles.lst ├── 考研历年国家分数线(1).csv ├── 考研历年国家分数线(2).csv ├── 考研历年国家分数线(3).csv └── 考研历年国家分数线(4).csv └── Word Count ├── WordCount-1.0.2.jar └── WordCount ├── .idea ├── compiler.xml ├── misc.xml └── workspace.xml ├── WordCount.iml ├── pom.xml ├── src ├── main │ └── java │ │ └── com │ │ └── itcast │ │ ├── MapUtils.java │ │ ├── WordMain.java │ │ ├── WordMapper.java │ │ └── WordReducer.java └── test │ └── java │ └── test.java └── target ├── WordCount-1.0.2.jar ├── classes └── com │ └── itcast │ ├── MapUtils$1.class │ ├── MapUtils.class │ ├── WordMain.class │ ├── WordMapper.class │ └── WordReducer.class ├── maven-archiver └── pom.properties ├── maven-status └── maven-compiler-plugin │ ├── compile │ └── default-compile │ │ ├── createdFiles.lst │ │ └── inputFiles.lst │ └── testCompile │ └── default-testCompile │ ├── createdFiles.lst │ └── inputFiles.lst └── test-classes └── test.class /Analysis and statistics of movie datasets/Data processing results/Country.txt: -------------------------------------------------------------------------------- 1 | 美国 125 2 | 英国 33 3 | 日本 32 4 | 中国香港 28 5 | 中国大陆 23 6 | 法国 16 7 | 韩国 11 8 | 德国 11 9 | 意大利 9 10 | 中国台湾 8 11 | 加拿大 8 12 | 澳大利亚 5 13 | 瑞士 3 14 | 新西兰 3 15 | 巴西 2 16 | 瑞典 2 17 | 西班牙 2 18 | 印度 2 19 | 泰国 1 20 | 波兰 1 21 | 伊朗 1 22 | 奥地利 1 23 | 丹麦 1 24 | 荷兰 1 25 | 阿根廷 1 26 | 黎巴嫩 1 27 | 卡塔尔 1 28 | 南非 1 29 | 墨西哥 1 30 | 希腊 1 31 | 爱尔兰 1 32 | 塞浦路斯 1 33 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Data processing results/Score.txt: -------------------------------------------------------------------------------- 1 | 8.9 38 2 | 8.8 37 3 | 8.7 35 4 | 9.1 26 5 | 9.3 20 6 | 8.6 17 7 | 9 17 8 | 9.2 15 9 | 9.4 7 10 | 8.5 5 11 | 9.5 3 12 | 9.6 3 13 | 9.7 1 14 | 8.4 1 15 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Data processing results/Type.txt: -------------------------------------------------------------------------------- 1 | 剧情 170 2 | 喜剧 52 3 | 爱情 49 4 | 冒险 44 5 | 奇幻 38 6 | 犯罪 37 7 | 动画 33 8 | 惊悚 29 9 | 悬疑 27 10 | 动作 27 11 | 科幻 20 12 | 家庭 19 13 | 传记 14 14 | 战争 14 15 | 古装 10 16 | 同性 8 17 | 历史 8 18 | 音乐 7 19 | 歌舞 5 20 | 儿童 4 21 | 武侠 4 22 | 情色 2 23 | 恐怖 2 24 | 灾难 2 25 | 西部 2 26 | 纪录片 2 27 | 运动 1 28 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/National Film quantity distribution statistics/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/National Film quantity distribution statistics/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/National Film quantity distribution statistics/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Ranking of total film reviews/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Ranking of total film reviews/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Ranking of total film reviews/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of each score/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of each score/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of each score/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/MapUtils$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/MapUtils$1.class -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/MapUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/MapUtils.class -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/TypeMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/TypeMain.class -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/TypeMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/TypeMap.class -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/TypeReduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/TypeReduce.class -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Sun Dec 26 14:16:43 CST 2021 3 | version=1.0-SNAPSHOT 4 | groupId=org.example 5 | artifactId=wxg-Type 6 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | MapUtils.class 2 | TypeMain.class 3 | TypeReduce.class 4 | MapUtils$1.class 5 | TypeMap.class 6 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | F:\IDEA Projects\wxg-Type\src\main\java\TypeMain.java 2 | F:\IDEA Projects\wxg-Type\src\main\java\TypeReduce.java 3 | F:\IDEA Projects\wxg-Type\src\main\java\TypeMap.java 4 | F:\IDEA Projects\wxg-Type\src\main\java\MapUtils.java 5 | -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/wxg-Type-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/Statistics of distribution proportion of film types/target/wxg-Type-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/国家.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/国家.txt -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/类型.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/类型.txt -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/评价.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/评价.txt -------------------------------------------------------------------------------- /Analysis and statistics of movie datasets/评分.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Analysis and statistics of movie datasets/评分.txt -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part I -- Extract data/zhuboClean.jar -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/target/classes/DataCleanJob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part I -- Extract data/zhuboClean/target/classes/DataCleanJob.class -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/target/classes/DataCleanMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part I -- Extract data/zhuboClean/target/classes/DataCleanMap.class -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Tue Nov 23 12:41:10 CST 2021 3 | version=1.0-SNAPSHOT 4 | groupId=org.example 5 | artifactId=zhuboClean 6 | -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | DataCleanJob.class 2 | DataCleanMap.class 3 | -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | F:\IDEA Projects\zhuboClean\src\main\java\DataCleanMap.java 2 | F:\IDEA Projects\zhuboClean\src\main\java\DataCleanJob.java 3 | -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part I -- Extract data/zhuboClean/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/target/zhuboClean-1.0-SNAPSHOT.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part I -- Extract data/zhuboClean/target/zhuboClean-1.0-SNAPSHOT.jar -------------------------------------------------------------------------------- /Anchor data statistics/Part I -- Extract data/zhuboClean/zhuboClean.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part II -- Summation sort/zhuboCensus-1.0.jar -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/classes/VideoInfoJob.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/classes/VideoInfoJob.class -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/classes/VideoInfoMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/classes/VideoInfoMap.class -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/classes/VideoInfoReduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/classes/VideoInfoReduce.class -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/classes/VideoInfoWritable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/classes/VideoInfoWritable.class -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Sun Nov 28 00:34:36 CST 2021 3 | version=1.0 4 | groupId=org.example 5 | artifactId=zhuboCensus 6 | -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | VideoInfoJob.class 2 | VideoInfoWritable.class 3 | VideoInfoReduce.class 4 | VideoInfoMap.class 5 | -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | F:\IDEA Projects\zhuboCensus\src\main\java\VideoInfoMap.java 2 | F:\IDEA Projects\zhuboCensus\src\main\java\VideoInfoWritable.java 3 | F:\IDEA Projects\zhuboCensus\src\main\java\VideoInfoJob.java 4 | F:\IDEA Projects\zhuboCensus\src\main\java\VideoInfoReduce.java 5 | -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/zhuboCensus-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Anchor data statistics/Part II -- Summation sort/zhuboCensus/target/zhuboCensus-1.0.jar -------------------------------------------------------------------------------- /Anchor data statistics/Part II -- Summation sort/zhuboCensus/zhuboCensus.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /JD mobile data statistics/Brand sales related data statistics/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /JD mobile data statistics/Brand sales related data statistics/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /JD mobile data statistics/Brand sales related data statistics/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /JD mobile data statistics/Brand sales related data statistics/src/test/java/dwd.java: -------------------------------------------------------------------------------- 1 | import org.junit.Test; 2 | 3 | import java.math.BigDecimal; 4 | 5 | /** 6 | * FileName: dwd 7 | * Author: Yuan-Programmer 8 | * Date: 2021/12/29 9:27 9 | * Description: 10 | */ 11 | public class dwd { 12 | 13 | @Test 14 | public void test() { 15 | double s1 = 19.99; 16 | Integer s2 = 20; 17 | BigDecimal d1 = new BigDecimal(s1); 18 | BigDecimal d2 = new BigDecimal(s2); 19 | d1 = d1.multiply(d2); 20 | System.out.println(d1); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Java job analysis statistics/Data processing results/公司规模类型统计排序结果.txt: -------------------------------------------------------------------------------- 1 | 公司规模 占比 2 | 上市公司 25 3 | 事业单位 1 4 | 创业公司 4 5 | 合资 16 6 | 国企 9 7 | 外资(欧美) 9 8 | 外资(非欧美) 9 9 | 民营公司 177 10 | -------------------------------------------------------------------------------- /Java job analysis statistics/Data processing results/学历要求统计排序结果.txt: -------------------------------------------------------------------------------- 1 | 学历 占比 2 | 本科 524 3 | 大专 174 4 | 硕士 1 5 | -------------------------------------------------------------------------------- /Java job analysis statistics/Data processing results/工作经验要求统计排序结果.txt: -------------------------------------------------------------------------------- 1 | 工作经验 占比 2 | 1-3 180 3 | 3-5 149 4 | 3-4 101 5 | 10 60 6 | 5-10 60 7 | 2 57 8 | 5-7 51 9 | 1 27 10 | 8-9 9 11 | 无需 5 12 | -------------------------------------------------------------------------------- /Java job analysis statistics/Data processing results/技能标签统计排序结果.txt: -------------------------------------------------------------------------------- 1 | 标签名字 占比 2 | 咨询 299 3 | 软件服务 150 4 | IT技术服务 120 5 | Spring 118 6 | MySQL 90 7 | MyBatis 90 8 | 电商平台 90 9 | SQL Server 90 10 | ORACLE 60 11 | Hibernate 60 12 | Linux 60 13 | Tomcat 32 14 | Eclipse 32 15 | 人工智能服务 32 16 | JAVA 30 17 | 互联网广告 30 18 | 科技金融 30 19 | 分布式 30 20 | JavaScript 30 21 | Memcache 30 22 | Python 30 23 | 信息安全 30 24 | 零售 30 25 | 后端 30 26 | SQL 30 27 | 批发 30 28 | 企业服务 30 29 | HTML5 30 30 | 数据服务 29 31 | 银行 1 32 | springboot 1 33 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_google_code_findbugs_jsr305_3_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_google_code_gson_gson_2_2_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_google_guava_failureaccess_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_google_guava_guava_27_0_jre.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_google_protobuf_protobuf_java_2_5_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_google_re2j_re2j_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_jcraft_jsch_0_1_55.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_nimbusds_nimbus_jose_jwt_9_8_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_squareup_okhttp_okhttp_2_7_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_squareup_okio_okio_1_6_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_sun_jersey_jersey_client_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_sun_jersey_jersey_core_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_sun_jersey_jersey_json_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_sun_jersey_jersey_server_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_sun_jersey_jersey_servlet_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_sun_xml_bind_jaxb_impl_2_2_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__com_thoughtworks_paranamer_paranamer_2_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__commons_cli_commons_cli_1_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__commons_codec_commons_codec_1_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__commons_daemon_commons_daemon_1_0_13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__commons_io_commons_io_2_8_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__commons_logging_commons_logging_1_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__commons_net_commons_net_3_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__dnsjava_dnsjava_2_1_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__io_netty_netty_3_10_6_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__io_netty_netty_all_4_1_61_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__io_netty_netty_buffer_4_1_42_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__io_netty_netty_codec_4_1_42_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__io_netty_netty_common_4_1_42_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__io_netty_netty_handler_4_1_42_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__javax_servlet_javax_servlet_api_3_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__javax_servlet_jsp_jsp_api_2_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__javax_ws_rs_jsr311_api_1_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__javax_xml_bind_jaxb_api_2_2_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__log4j_log4j_1_2_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__net_minidev_accessors_smart_2_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__net_minidev_json_smart_2_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_avro_avro_1_7_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_commons_commons_math3_3_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_commons_commons_text_1_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_curator_curator_client_4_2_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_hadoop_hadoop_auth_3_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_hadoop_hadoop_client_3_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_hadoop_hadoop_common_3_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_hadoop_hadoop_hdfs_3_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_admin_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_client_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_common_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_core_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_crypto_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_identity_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_server_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_simplekdc_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerb_util_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerby_asn1_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerby_config_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerby_pkix_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerby_util_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_kerby_xdr_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_kerby_token_provider_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_apache_zookeeper_zookeeper_3_5_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_checkerframework_checker_qual_2_5_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_codehaus_jackson_jackson_jaxrs_1_9_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_codehaus_jackson_jackson_xc_1_9_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_codehaus_jettison_jettison_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_codehaus_woodstox_stax2_api_4_2_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_jline_jline_3_9_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_ow2_asm_asm_8_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_slf4j_slf4j_log4j12_1_7_30.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/libraries/Maven__org_xerial_snappy_snappy_java_1_1_8_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/target/classes/CompanyTypeMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/companytype-count/target/classes/CompanyTypeMain.class -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/target/classes/CompanyTypeMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/companytype-count/target/classes/CompanyTypeMap.class -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/target/classes/CompanyTypeReduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/companytype-count/target/classes/CompanyTypeReduce.class -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/companytype-count/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/.idea/dictionaries/Administrator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | workarea 5 | workyear 6 | 7 | 8 | -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/education-count.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/target/classes/EducationMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/education-count/target/classes/EducationMain.class -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/target/classes/EducationMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/education-count/target/classes/EducationMap.class -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/target/classes/EducationReduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/education-count/target/classes/EducationReduce.class -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/target/classes/EducationSort$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/education-count/target/classes/EducationSort$1.class -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/target/classes/EducationSort.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/education-count/target/classes/EducationSort.class -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/education-count/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/target/classes/SkillLabelMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/skill-label-count/target/classes/SkillLabelMain.class -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/target/classes/SkillLabelMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/skill-label-count/target/classes/SkillLabelMap.class -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/target/classes/SkillLabelReduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/skill-label-count/target/classes/SkillLabelReduce.class -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/target/classes/SkillLabelSort$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/skill-label-count/target/classes/SkillLabelSort$1.class -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/target/classes/SkillLabelSort.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/skill-label-count/target/classes/SkillLabelSort.class -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/skill-label-count/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/JavaInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workarea-salary-count/target/classes/JavaInfo.class -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/WorkareaMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workarea-salary-count/target/classes/WorkareaMain.class -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/WorkareaMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workarea-salary-count/target/classes/WorkareaMap.class -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/WorkareaReduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workarea-salary-count/target/classes/WorkareaReduce.class -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/WorkareaSort$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workarea-salary-count/target/classes/WorkareaSort$1.class -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/WorkareaSort.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workarea-salary-count/target/classes/WorkareaSort.class -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/workarea-salary-count/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/target/classes/WorkyearMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workyear-count/target/classes/WorkyearMain.class -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/target/classes/WorkyearMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workyear-count/target/classes/WorkyearMap.class -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/target/classes/WorkyearReduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workyear-count/target/classes/WorkyearReduce.class -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/target/classes/WorkyearSort$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workyear-count/target/classes/WorkyearSort$1.class -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/target/classes/WorkyearSort.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Java job analysis statistics/workyear-count/target/classes/WorkyearSort.class -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Java job analysis statistics/workyear-count/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Average score ranking of school running level/Average score ranking of school running level.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Average score ranking of school running level/Average score ranking of school running level.jar -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Average score ranking of school running level/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Average score ranking of school running level/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Average score ranking of school running level/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Data processing results/办学层次统计排序结果.txt: -------------------------------------------------------------------------------- 1 | 区域知名大学 232 2 | 区域一流大学 127 3 | 区域高水平大学 121 4 | 中国高水平大学 66 5 | 中国一流大学 42 6 | 世界高水平大学 22 7 | 世界知名高水平大学 16 8 | 世界一流大学 8 -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Data processing results/各办学层次的平均得分排名结果.txt: -------------------------------------------------------------------------------- 1 | 办学层次 平均得分排行 平均星级 2 | 世界一流大学 85.82 8 3 | 世界知名高水平大学 76.87 7 4 | 世界高水平大学 67.84 6 5 | 中国一流大学 65.36 5 6 | 中国高水平大学 63.81 4 7 | 区域一流大学 62.05 3 8 | 区域知名大学 60.53 1 9 | 区域高水平大学 61.26 2 10 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Data processing results/星级排名的统计排序结果.txt: -------------------------------------------------------------------------------- 1 | 1 232 2 | 3 127 3 | 2 121 4 | 4 66 5 | 5 42 6 | 6 22 7 | 7 16 8 | 8 8 9 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/.name: -------------------------------------------------------------------------------- 1 | zff-university -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_google_code_findbugs_jsr305_3_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_google_code_gson_gson_2_2_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_google_guava_failureaccess_1_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_google_guava_guava_27_0_jre.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_google_re2j_re2j_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_jcraft_jsch_0_1_55.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_nimbusds_nimbus_jose_jwt_9_8_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_squareup_okhttp_okhttp_2_7_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_squareup_okio_okio_1_6_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_sun_jersey_jersey_client_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_sun_jersey_jersey_core_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_sun_jersey_jersey_json_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_sun_jersey_jersey_server_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_sun_jersey_jersey_servlet_1_19.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_sun_xml_bind_jaxb_impl_2_2_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__com_thoughtworks_paranamer_paranamer_2_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__commons_cli_commons_cli_1_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__commons_codec_commons_codec_1_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__commons_daemon_commons_daemon_1_0_13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__commons_io_commons_io_2_8_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__commons_net_commons_net_3_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__dnsjava_dnsjava_2_1_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__io_netty_netty_3_10_6_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__io_netty_netty_all_4_1_61_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__io_netty_netty_codec_4_1_42_Final.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__javax_servlet_jsp_jsp_api_2_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__javax_ws_rs_jsr311_api_1_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__javax_xml_bind_jaxb_api_2_2_11.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__junit_junit_4_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__log4j_log4j_1_2_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__net_minidev_accessors_smart_2_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__net_minidev_json_smart_2_4_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_avro_avro_1_7_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_7.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_commons_commons_text_1_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_hadoop_hadoop_auth_3_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_hadoop_hadoop_hdfs_3_3_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerb_admin_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerb_client_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerb_common_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerb_core_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerb_crypto_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerb_identity_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerb_server_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerb_util_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerby_asn1_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerby_config_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerby_pkix_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerby_util_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_kerby_kerby_xdr_1_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_apache_zookeeper_zookeeper_3_5_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_codehaus_jackson_jackson_xc_1_9_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_codehaus_jettison_jettison_1_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_codehaus_woodstox_stax2_api_4_2_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_jline_jline_3_9_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_ow2_asm_asm_8_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/libraries/Maven__org_slf4j_slf4j_log4j12_1_7_30.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/Star statistics.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Star statistics/Star statistics.jar -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/target/classes/Map1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Star statistics/target/classes/Map1.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/target/classes/MapSorts$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Star statistics/target/classes/MapSorts$1.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/target/classes/MapSorts.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Star statistics/target/classes/MapSorts.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/target/classes/Reduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Star statistics/target/classes/Reduce.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/target/classes/UniversityMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Star statistics/target/classes/UniversityMain.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Star statistics/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/Statistics of school running levels.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Statistics of school running levels/Statistics of school running levels.jar -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/META-INF/zff-university.kotlin_module: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/Map1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/Map1.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/MapSorts$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/MapSorts$1.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/MapSorts.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/MapSorts.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/Reduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/Reduce.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/UniversityMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/UniversityMain.class -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 13 | -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Ranking statistics of Chinese Universities/Statistics of school running levels/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/Query-of-scores-of-each-major-in-the-University-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/Query-of-scores-of-each-major-in-the-University-1.0.jar -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 8 | 9 | 10 | hadoop.tmp.dir 11 | /xiaoyuan/MapReduce 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/Query-of-scores-of-each-major-in-the-University-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/Query-of-scores-of-each-major-in-the-University-1.0.jar -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/Main.class -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/MyMap$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/MyMap$1.class -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/MyMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/MyMap.class -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/University.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/University.class -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 8 | 9 | 10 | hadoop.tmp.dir 11 | /xiaoyuan/MapReduce 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Thu Jun 16 15:50:36 CST 2022 3 | version=1.0 4 | groupId=com.example 5 | artifactId=Query-of-scores-of-each-major-in-the-University 6 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | Main.class 2 | University.class 3 | MyMap$1.class 4 | MyMap.class 5 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | F:\Hadoop\接单\19数媒颜洁玲\MapReduce\Query of scores of each major in the University\src\main\java\University.java 2 | F:\Hadoop\接单\19数媒颜洁玲\MapReduce\Query of scores of each major in the University\src\main\java\MyMap.java 3 | F:\Hadoop\接单\19数媒颜洁玲\MapReduce\Query of scores of each major in the University\src\main\java\Main.java 4 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Query of scores of each major in the University/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of College average score/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of College average score/Statistics of College average score.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of College average score/Statistics-of-College-average-score-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of College average score/Statistics-of-College-average-score-1.0.jar -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of College average score/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 8 | 9 | 10 | hadoop.tmp.dir 11 | /xiaoyuan/MapReduce 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of College average score/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of College average score/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of professional average score/Statistics-of-professional-average-score-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of professional average score/Statistics-of-professional-average-score-1.0.jar -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of professional average score/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 8 | 9 | 10 | hadoop.tmp.dir 11 | /xiaoyuan/MapReduce 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of professional average score/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/Statistics of professional average score/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/University-rofessional-Statistics-Ranking-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/University-rofessional-Statistics-Ranking-1.0.jar -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/src/main/resources/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 8 | 9 | 10 | hadoop.tmp.dir 11 | /xiaoyuan/MapReduce 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/src/main/resources/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/University-rofessional-Statistics-Ranking-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/University-rofessional-Statistics-Ranking-1.0.jar -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/Main.class -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/MyMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/MyMap.class -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/MyReduce$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/MyReduce$1.class -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/MyReduce.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/MyReduce.class -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/core-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | fs.defaultFS 5 | hdfs://hadoop01:9000 6 | 7 | 8 | 9 | 10 | hadoop.tmp.dir 11 | /xiaoyuan/MapReduce 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.appender.A1.Encoding=UTF-8 2 | log4j.rootLogger=INFO, stdout 3 | log4j.appender.stdout=org.apache.log4j.ConsoleAppender 4 | log4j.appender.stdout.layout=org.apache.log4j.PatternLayout 5 | log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} | %-5.5p | %-16.16t | %-32.32c{1} | %-32.32C %4L | %m%n -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/classes/mapred-site.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mapred.remote.os 5 | Linux 6 | Remote MapReduce framework's OS, can be either Linux or Windows 7 | 8 | 9 | 10 | mapreduce.app-submission.cross-platform 11 | true 12 | 13 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Thu Jun 16 14:11:36 CST 2022 3 | version=1.0 4 | groupId=com.example 5 | artifactId=University-rofessional-Statistics-Ranking 6 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | Main.class 2 | MyReduce.class 3 | MyReduce$1.class 4 | MyMap.class 5 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | F:\Hadoop\接单\19数媒颜洁玲\MapReduce\University Professional Statistics Ranking\src\main\java\Main.java 2 | F:\Hadoop\接单\19数媒颜洁玲\MapReduce\University Professional Statistics Ranking\src\main\java\MyReduce.java 3 | F:\Hadoop\接单\19数媒颜洁玲\MapReduce\University Professional Statistics Ranking\src\main\java\MyMap.java 4 | -------------------------------------------------------------------------------- /Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Score line statistics of 2020 postgraduate entrance examination Universities/University Professional Statistics Ranking/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst -------------------------------------------------------------------------------- /Word Count/WordCount-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Word Count/WordCount-1.0.2.jar -------------------------------------------------------------------------------- /Word Count/WordCount/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /Word Count/WordCount/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Word Count/WordCount/WordCount.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Word Count/WordCount/src/test/java/test.java: -------------------------------------------------------------------------------- 1 | import com.itcast.MapUtils; 2 | 3 | import java.util.HashMap; 4 | import java.util.LinkedHashMap; 5 | import java.util.List; 6 | import java.util.Map; 7 | 8 | /** 9 | * FileName: test 10 | * Author: Bald Programmer 11 | * Date: 2021/11/9 10:00 12 | * Description: 13 | */ 14 | public class test { 15 | public static void main(String[] arg0){ 16 | Map map = new HashMap(); 17 | map.put("张三",9); 18 | map.put("李四",1); 19 | map.put("老五",84); 20 | map.put("赵六",15); 21 | 22 | Map returnMap = MapUtils.sortValue(map); 23 | System.out.println(returnMap); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Word Count/WordCount/target/WordCount-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Word Count/WordCount/target/WordCount-1.0.2.jar -------------------------------------------------------------------------------- /Word Count/WordCount/target/classes/com/itcast/MapUtils$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Word Count/WordCount/target/classes/com/itcast/MapUtils$1.class -------------------------------------------------------------------------------- /Word Count/WordCount/target/classes/com/itcast/MapUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Word Count/WordCount/target/classes/com/itcast/MapUtils.class -------------------------------------------------------------------------------- /Word Count/WordCount/target/classes/com/itcast/WordMain.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Word Count/WordCount/target/classes/com/itcast/WordMain.class -------------------------------------------------------------------------------- /Word Count/WordCount/target/classes/com/itcast/WordMapper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Word Count/WordCount/target/classes/com/itcast/WordMapper.class -------------------------------------------------------------------------------- /Word Count/WordCount/target/classes/com/itcast/WordReducer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Word Count/WordCount/target/classes/com/itcast/WordReducer.class -------------------------------------------------------------------------------- /Word Count/WordCount/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | #Generated by Maven 2 | #Wed Nov 10 15:28:16 CST 2021 3 | version=1.0.2 4 | groupId=org.example 5 | artifactId=WordCount 6 | -------------------------------------------------------------------------------- /Word Count/WordCount/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | com\itcast\WordReducer.class 2 | com\itcast\MapUtils$1.class 3 | com\itcast\WordMapper.class 4 | com\itcast\WordMain.class 5 | com\itcast\MapUtils.class 6 | -------------------------------------------------------------------------------- /Word Count/WordCount/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | F:\IDEA Projects\WordCount\src\main\java\com\itcast\WordReducer.java 2 | F:\IDEA Projects\WordCount\src\main\java\com\itcast\WordMain.java 3 | F:\IDEA Projects\WordCount\src\main\java\com\itcast\MapUtils.java 4 | F:\IDEA Projects\WordCount\src\main\java\com\itcast\WordMapper.java 5 | -------------------------------------------------------------------------------- /Word Count/WordCount/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst: -------------------------------------------------------------------------------- 1 | test.class 2 | -------------------------------------------------------------------------------- /Word Count/WordCount/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst: -------------------------------------------------------------------------------- 1 | F:\IDEA Projects\WordCount\src\test\java\test.java 2 | -------------------------------------------------------------------------------- /Word Count/WordCount/target/test-classes/test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanprogrammer/MapReduce-Case-Statistics/faa0fa4afd2c21313c25d8fb86689443e9b040b8/Word Count/WordCount/target/test-classes/test.class --------------------------------------------------------------------------------