ICode9

精准搜索请尝试: 精确搜索
  • PTA甲级 1068 Find More Coins (30point(s))2021-01-03 14:59:48

    强烈推荐,刷PTA的朋友都认识一下柳神–PTA解法大佬 本文由参考于柳神博客写成 柳神的CSDN博客,这个可以搜索文章 柳神的个人博客,这个没有广告,但是不能搜索 还有就是非常非常有用的 算法笔记 全名是 算法笔记 上级训练实战指南 //这本都是PTA的题解 算法笔记 PS 今天也要

  • 1032 Sharing (25分)2020-03-07 12:00:51

    #include<stdio.h> struct Node{ char data; int next; bool flag; }node[100010]; int main(){ int a,b,n; scanf("%d%d%d",&a,&b,&n); for(int i=0;i<100010;i++){ node[i].flag=false; } for(int

  • PTA甲级1073 Scientific Notation (20分)2020-02-28 18:52:34

    目录 原题如下 Input Specification: Output Specification: Sample Input 1: Sample Output 1: Sample Input 2: Sample Output 2: 题目大意 解体思路 我的代码(下面有柳神的代码) 柳神的代码 首先,先贴柳神的博客 https://www.liuchuo.net/ 这是地址 想要刷好PTA,强烈推

  • C++ STL之栈stack和queue的使⽤2020-02-25 11:01:54

    写在最前面,本文摘录于柳神笔记:   (1)栈 stack 在头⽂件 #include 中,是数据结构⾥⾯的栈~以下是常⽤⽤法:        (2)队列 queue 在头⽂件 #include 中,是数据结构⾥⾯的队列~以下是常⽤⽤法:     

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有