编写题解 2942: 机器翻译 摘要:解题思路:看代码注解注意事项:注意word参考代码#include<stdio.h>int main(){ //输入函数 int n,m,i,j; int a;//把a定义成一个数组反而就出现错…… 题解列表 2022年10月25日 0 点赞 0 评论 243 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int m,n,a[100]={0}, * b,i,j,flag,su…… 题解列表 2023年06月13日 0 点赞 0 评论 123 浏览 评分:0.0
机器翻译(队列写法) 摘要:解题思路:按照队列的思想依次引入单词,并附加st来记录单词是否已经学过。注意事项:参考代码:#include<iostream>#include<algorithm>#include<queue>#i…… 题解列表 2023年07月05日 0 点赞 0 评论 129 浏览 评分:0.0
机器翻译(数组解决) 摘要:解题思路:创建一个大小为m的数组,count为查词典的次数,mc是当内存没有该单词时,将该单词添加到内存中的位置。cha每次循环初始为true,当内存中有该单词时变为false,不会记录。没有该单词时…… 题解列表 2024年02月28日 0 点赞 0 评论 191 浏览 评分:9.9
编写题解 2942: 机器翻译(Queue) 摘要:解题思路:注意事项:参考代码:package temp; import java.util.*; public class t_2942 { public static void main(S…… 题解列表 2024年02月28日 0 点赞 0 评论 89 浏览 评分:0.0
嗨嗨嗨,来了喔! 摘要:解题思路:看代码注意事项:参考代码:#include <bits/stdc++.h>using namespace std;bool panduan(int n,int a[],int m){ for…… 题解列表 2024年03月28日 0 点赞 0 评论 71 浏览 评分:0.0
python双端队列和set 摘要:解题思路:注意事项:参考代码:from collections import dequedef main(): # 获取用户输入 m, n = map(int, input().split…… 题解列表 2024年04月30日 0 点赞 0 评论 115 浏览 评分:0.0