编写题解 1052: [编程入门]链表合并 摘要:import java.util.HashMap; import java.util.Scanner; public class Main { public static void mai…… 题解列表 2022年02月07日 0 点赞 0 评论 136 浏览 评分:0.0
1052链表题解(新手勿喷) 摘要:解题思路:新手比较容易理解的思路注意事项:参考代码:a,b = map(int,input().split())d = {}for i in range(a+b): x,y = map(int,…… 题解列表 2022年01月24日 0 点赞 0 评论 702 浏览 评分:9.9
指针应用,注意虽然是冒泡,但是指针交换值与数组还是有差别 摘要:#include#include#includetypedef struct stu{ int sno; int grade; }STU,*stu; int main(){ int n…… 题解列表 2022年01月19日 0 点赞 0 评论 130 浏览 评分:0.0
不用链表合并 摘要:参考代码:#include<iostream>#include<map>#include<vector>#include<algorithm>using namespace std;map<int, …… 题解列表 2022年01月15日 0 点赞 0 评论 148 浏览 评分:0.0
1052: [编程入门]链表合并 摘要:这里的解法是依次将结点插入链表。题目的本意应该是提供 a 和 b 两个现成的链表,然后将 b 链表归并到 a 链表里,最后将链表排序。#include<bits/stdc++.h> using na…… 题解列表 2021年12月19日 0 点赞 0 评论 260 浏览 评分:0.0
1052: [编程入门]链表合并,用字典来解决 摘要:解题思路:注意事项:参考代码e,f = map(int,input().split())dict={}list = []while True: try: a,b=map(int,i…… 题解列表 2021年12月04日 0 点赞 0 评论 192 浏览 评分:0.0
自己看.............. 摘要:#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <stdio.h>#include <cmath>#include <algori…… 题解列表 2021年12月04日 0 点赞 0 评论 355 浏览 评分:0.0
链表合并(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ int id; int score; student *nex…… 题解列表 2021年12月01日 0 点赞 0 评论 437 浏览 评分:9.9
编程入门]二维数组的转置 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <malloc.h> typedef struct student { double number; …… 题解列表 2021年11月18日 0 点赞 0 评论 216 浏览 评分:0.0
[编程入门]链表合并 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; typedef struct node{ int num; int…… 题解列表 2021年11月13日 0 点赞 0 评论 157 浏览 评分:0.0