查看: 11|回复: 1

[cf/cfm] 手游-cfm星辰裸奔吸附公益辅助

[复制链接]
  • TA的每日心情
    无聊
    2 小时前
  • 签到天数: 730 天

    [LV.9]以坛为家II

    6726

    主题

    514

    帖子

    4万

    积分

    管理员

    盛年不重来,一日难再晨。

    UID
    1
    云币
    8025
    金钱
    19073
    好评
    548
    性别
    在线时间
    1824 小时
    注册时间
    2019-8-21

    管理员勋章最佳新人活跃会员热心会员推广达人宣传达人灌水之王突出贡献优秀版主荣誉管理论坛元老财富大使热爱篮球国庆勋章灌水大神帖子大侠以坛为家劳动节勋章虎年纪念勋章夜猫子搬运大神音乐无限游戏大全

    发表于 昨天 23:58 | 显示全部楼层 |阅读模式 IP:福建泉州
    1.jpg

    卡密随便输入即可

    地址:
    游客,如果您要查看本帖隐藏内容请回复

    楼主热帖
    回复

    使用道具 举报

  • TA的每日心情
    开心
    2 小时前
  • 签到天数: 34 天

    [LV.5]常住居民I

    0

    主题

    22

    帖子

    191

    积分

    浅入佳境

    UID
    8534
    云币
    0
    金钱
    169
    好评
    0
    性别
    保密
    在线时间
    11 小时
    注册时间
    2024-10-26
    发表于 2 小时前 来自手机 | 显示全部楼层 IP:贵州黔南布依族苗族自治州
    import org.apache.hadoop.io.IntWritable;
    import org.apache.hadoop.io.LongWritable;
    import org.apache.hadoop.io.Text;
    import org.apache.hadoop.mapreduce.Mapper;
    import org.apache.hadoop.mapreduce.Reducer;

    import java.io.IOException;

    // Mapper 类
    public static class PurchaseCountMapper extends Mapper<LongWritable, Text, Text, IntWritable> {
        @Override
        protected void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException {
            String line = value.toString();
            String[] parts = line.split("\t");  // 根据实际数据的分隔符进行拆分
            String goods = parts[1];  // 假设商品名称在第二列
            context.write(new Text(goods), new IntWritable(1));
        }
    }

    // Reducer 类
    public static class PurchaseCountReducer extends Reducer<Text, IntWritable, Text, IntWritable> {
        @Override
        protected void reduce(Text key, Iterable<IntWritable> values, Context context) throws IOException, InterruptedException {
            int sum = 0;
            for (IntWritable value : values) {
                sum += value.get();
            }
            context.write(key, new IntWritable(sum));
        }
    }
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 注册账号

    本版积分规则

    手机版|小黑屋|秋月社区

    |网站地图

    GMT+8, 2024-11-30 02:31 , Processed in 0.120439 second(s), 34 queries , Gzip On.

    Powered by Qiu Yue X3.4 Licensed

    © 2019-2024 Comsenz Inc.