自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(47)
  • 资源 (3)
  • 收藏
  • 关注

原创 A. String Similarity

传送门A. String Similaritytime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputA binary string is a string where each character is either 0 or 1. Two binary strings aand b of equal length are similar

2020-08-26 00:07:43 262

原创 B. Ternary Sequence

传送门B. Ternary Sequencetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given two sequences a1,a2,…,an and b1,b2,…,bn. Each element of both sequences is either 0, 1 or 2. The number of e

2020-08-22 00:35:50 1609

原创 A. Distance and Axis

传送门A. Distance and Axistime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputWe have a point Awith coordinate x=n on OX-axis. We’d like to find an integer point B (also on OX-axis), such that the abs

2020-08-22 00:29:44 469

原创 A. Fafa and his Company

传送门935A. Fafa and his Companytime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputFafa owns a company that works on huge projects. There are n employees in Fafa’s company. Whenever the company has a

2020-08-18 17:19:15 182

原创 A. Vanya and Cubes

传送门492A. Vanya and Cubestime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputVanya got n cubes. He decided to build a pyramid from them. Vanya wants to build the pyramid as follows: the top level of

2020-08-18 17:02:33 235

原创 A. Add Odd or Subtract Even

传送门A. Add Odd or Subtract Eventime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given two positive integers a and b In one move, you can change a in the following way:Choose any positiv

2020-08-18 15:24:29 315

原创 A. Frog Jumping

传送门A. Frog JumpingA frog is currently at the point 00 on a coordinate axis OxOx. It jumps by the following algorithm: the first jump is aa units to the right, the second jump is bb units to the left, the third jump is aa units to the right, the fourth ju

2020-08-18 11:28:22 367

原创 A. Collecting Coins

传送门A. Collecting Coinstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputPolycarp has three sisters: Alice, Barbara, and Cerene. They’re collecting coins. Currently, Alice has acoins, Barbara ha

2020-08-18 11:05:13 145

原创 A. Brain‘s Photos

传送门A. Brain’s Photostime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputSmall, but very brave, mouse Brain was not accepted to summer school of young villains. He was upset and decided to postpone

2020-08-18 10:17:50 237

原创 B. Omkar and Infinity Clock

传送门B. Omkar and Infinity Clocktime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputBeing stuck at home, Ray became extremely bored. To pass time, he asks Lord Omkar to use his time bending power: I

2020-08-17 20:36:45 291

原创 A. Omkar and Password

A. Omkar and Passwordtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputLord Omkar has permitted you to enter the Holy Church of Omkar! To test your worthiness, Omkar gives you a password which yo

2020-08-17 19:54:02 720

原创 数塔(动态规划)

添加链接描述数塔Problem Description在讲述DP算法的时候,一个经典的例子就是数塔问题,它是这样描述的:有如下所示的数塔,要求从顶层走到底层,若每一步只能走到相邻的结点,则经过的结点的数字之和最大是多少?已经告诉你了,这是个DP的题目,你能AC吗?Input输入数据首先包括一个整数C,表示测试实例的个数,每个测试实例的第一行是一个整数N(1 <= N <= 100),表示数塔的高度,接下来用N行数字表示数塔,其中第i行有个i个整数,且所有的整数均在区间[0,99]内

2020-08-15 17:02:57 1584

原创 B - Longest Ordered Subsequence(动态规划)

传送门B - Longest Ordered SubsequenceA numeric sequence of ai is ordered if a1 < a2 < … < aN. Let the subsequence of the given numeric sequence (a1, a2, …, aN) be any sequence (ai1, ai2, …, aiK), where 1 <= i1 < i2 < … < iK <= N. For

2020-08-15 16:59:24 304 2

原创 数塔 hdu2084(动态规划)

添加链接描述数塔Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 79796 Accepted Submission(s): 45884Problem Description在讲述DP算法的时候,一个经典的例子就是数塔问题,它是这样描述的:有如下所示的数塔,要求从顶层走到底层,若每一步只能走到相邻的结点,则经过的结点的数字之和最大是多

2020-08-15 16:01:17 116

原创 C. Good Subarrays

传送门C. Good Subarraystime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given an array a1,a2,…,anconsisting of integers from 0 to 9. A subarray al,al+1,al+2,…,ar−1,ar is good if the sum o

2020-08-15 10:46:35 469

原创 B. Substring Removal Game

B. Substring Removal Gametime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputAlice and Bob play a game. They have a binary string s(a string such that each character in it is either 0 or 1). Alice

2020-08-15 10:37:58 903

原创 A. Bad Triangle

传送门A. Bad Triangletime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given an array a1,a2,…,an, which is sorted in non-decreasing order (ai≤ai+1)Find three indices i, j, k such that 1≤i&lt

2020-08-15 00:16:18 383

原创 A. Maximum GCD(最大公约数)

传送门A. Maximum GCDtime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputLet’s consider all integers in the range from 1 to n(inclusive).Among all pairs of distinct integers in this range, find the max

2020-08-14 17:08:20 532

原创 A. Gennady and a Card Game(字符匹配)

传送门A. Gennady and a Card Gametime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputGennady owns a small hotel in the countryside where he lives a peaceful life. He loves to take long walks, watch sun

2020-08-14 16:37:12 883

原创 A. Fancy Fence(思维)

传送门A. Fancy Fencetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputEmuskald needs a fence around his farm, but he is too lazy to build it himself. So he purchased a fence-building robot.He want

2020-08-14 11:22:10 516

原创 A. Dawid and Bags of Candies

传送门A. Dawid and Bags of Candiestime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputDawid has four bags of candies. The i-th of them contains ai candies. Also, Dawid has two friends. He wants to giv

2020-08-11 20:21:15 144

原创 C. Substring Game in the Lesson

传送门C. Substring Game in the Lessontime limit per test2 secondsmemory limit per test256 mebibytesinputstandard inputoutputstandard outputMike and Ann are sitting in the classroom. The lesson is boring, so they decided to play an interesting game.

2020-08-11 11:24:49 208

原创 A. Cards

传送门A. Cardstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputWhen Serezha was three years old, he was given a set of cards with letters for his birthday. They were arranged into words in the way

2020-08-11 10:46:47 176

原创 B. Equal Rectangles

传送门B. Equal Rectanglestime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given 4n sticks, the length of the i-th stick is ai.You have to create n rectangles, each rectangle will consist o

2020-08-07 17:42:50 223

原创 A. Circle of Students

传送门A. Circle of Studentstime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputThere are n students standing in a circle in some order. The index of the i-th student is pi. It is guaranteed that all

2020-08-07 16:47:53 210

原创 A. Hotelier

传送门A. Hoteliertime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputAmugae has a hotel consisting of 10 rooms. The rooms are numbered from 0 to 9 from left to right.The hotel has two entrances — one

2020-08-07 16:03:37 152

原创 B. Zero Array

传送门B. Zero Arraytime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given an array a1,a2,…,an.In one operation you can choose two elements ai and aj (i≠j) and decrease each of them by one.

2020-08-06 17:03:39 209

原创 B. Water Lily

传送门B. Water Lilytime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputWhile sailing on a boat, Inessa noticed a beautiful water lily flower above the lake’s surface. She came closer and it turned out

2020-08-06 15:18:45 200

原创 A. City Day

传送门A. City Daytime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputFor years, the Day of city N was held in the most rainy day of summer. New mayor decided to break this tradition and select a not-s

2020-08-06 11:44:45 149

原创 B. Odd Sum Segments

传送门B. Odd Sum Segmentstime limit per test3 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputYou are given an array aa consisting of nn integers a1,a2,…,ana1,a2,…,an. You want to split it into exactly kk non-empty n

2020-08-06 10:52:44 205

原创 A. Three Piles of Candies

传送门A. Three Piles of Candiestime limit per test 1 secondmemory limit per test 256 megabytesinput standard inputoutput standard outputAlice and Bob have received three big piles of candies as a gift. Now they want to divide these candies as fair as po

2020-08-06 09:59:14 296 1

原创 B. Tokitsukaze and Mahjong

传送门B. Tokitsukaze and Mahjongtime limit per test 1 secondmemory limit per test 256 megabytesinput standard inputoutput standard outputTokitsukaze is playing a game derivated from Japanese mahjong. In this game, she has three tiles in her hand. Each t

2020-08-04 21:00:28 272 4

原创 A. Tokitsukaze and Enhancement

传送门A. Tokitsukaze and Enhancementtime limit per test 1 secondmemory limit per test 256 megabytesinput standard inputoutput standard outputTokitsukaze is one of the characters in the game “Kantai Collection”. In this game, every character has a common

2020-08-04 19:38:57 150

原创 B. Number Circle

传送门B. Number Circletime limit per test 1 secondmemory limit per test 256 megabytesinput standard inputoutput standard outputYou are given n numbers a1,a2,…,an. Is it possible to arrange them in a circle in such a way that every number is strictly les

2020-08-04 11:29:03 258

原创 A. Keanu Reeves

传送门A. Keanu Reevestime limit per test 1 secondmemory limit per test 256 megabytesinput standard inputoutput standard outputAfter playing Neo in the legendary “Matrix” trilogy, Keanu Reeves started doubting himself: maybe we really live in virtual rea

2020-08-04 10:23:44 166

原创 A. Vus the Cossack and a Contest

传送门A. Vus the Cossack and a Contesttime limit per test 1 secondmemory limit per test 256 megabytesinput standard inputoutput standard output题目描述Vus the Cossack holds a programming competition, in which nn people participate. He decided to award them

2020-08-04 09:21:40 212

原创 hdu 2043 密码

传送门密码Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 92265 Accepted Submission(s): 36822Problem Description网上流传一句话:“常在网上飘啊,哪能不挨刀啊~”。其实要想能安安心心地上网其实也不难,学点安全知识就可以。首先,我们就要设置一个安全的密码。那什么样的密码才叫安全的呢?

2020-08-02 20:31:27 169

原创 hdu 2042 不容易系列之二

传送门不容易系列之二Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 48021 Accepted Submission(s): 38530Problem Description你活的不容易,我活的不容易,他活的也不容易。不过,如果你看了下面的故事,就会知道,有位老汉比你还不容易。重庆市郊黄泥板村的徐老汉(大号徐东海,简称XDH)这两

2020-08-02 20:09:13 117

原创 hdu2040 亲和数

传送门亲和数Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 67605 Accepted Submission(s): 40949Problem Description古希腊数学家毕达哥拉斯在自然数研究中发现,220的所有真约数(即不是自身的约数)之和为:1+2+4+5+10+11+20+22+44+55+110=284。而284的所

2020-08-02 17:39:55 163

原创 A. Raising Bacteria

传送门579A. Raising Bacteriatime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output题目描述You are a lover of bacteria. You want to raise some bacteria in a box.Initially, the box is empty. Each morning, y

2020-08-02 16:00:04 254

有关YOLO的介绍、心得体会、相关项目和练习内容

关于YOLO的介绍、心得体会、相关项目和练习内容。YOLO作为一种快速且准确的目标检测算法,为计算机视觉领域带来了重要的突破,并在实际应用中取得了广泛的成功。

2024-03-03

蓝桥杯是中国的一项全国性计算机科学与技术竞赛,旨在发现和培养优秀的计算机科学与技术人才

蓝桥杯是中国的一项全国性计算机科学与技术竞赛,旨在发现和培养优秀的计算机科学与技术人才

2024-02-18

智能车竞赛是一项涉及机器人技术、自动化控制和人工智能的竞赛活动,参赛者需要设计、开发和优化能够自主导航的智能车辆

智能车竞赛是一项涉及机器人技术、自动化控制和人工智能的竞赛活动,参赛者需要设计、开发和优化能够自主导航的智能车辆

2024-02-18

大创(大学生创新创业训练计划)是国内高校开展的一个重要科研训练项目,涉及创新创业、项目研发和实践能力培养

大创(大学生创新创业训练计划)是国内高校开展的一个重要科研训练项目,涉及创新创业、项目研发和实践能力培养

2024-02-18

美赛(美国大学生数学建模竞赛,也称为MCMICM)是一个涉及数学建模、数据分析和文档写作的竞赛,以下是一些资源推荐

美赛(美国大学生数学建模竞赛,也称为MCMICM)是一个涉及数学建模、数据分析和文档写作的竞赛,以下是一些资源推荐

2024-02-18

ACM、NOI和CSP是国内外知名的程序设计竞赛,以下是一些资源推荐

ACM、NOI和CSP的题目和要求会因不同的竞赛组织和级别而有所不同。建议您在备赛过程中参考相关竞赛组织机构的官方网站和指南,以获取最准确和详细的信息。

2024-02-18

电赛(电子设计竞赛)是一个涉及电子设计、硬件开发和嵌入式系统的竞赛

电赛(电子设计竞赛)是一个涉及电子设计、硬件开发和嵌入式系统的竞赛

2024-02-18

计算机二级考试通常包括计算机基础知识、计算机操作系统、Office办公软件、数据库基础、网页设计与制作等内容

计算机二级考试通常包括计算机基础知识、计算机操作系统、Office办公软件、数据库基础、网页设计与制作等内容

2024-02-18

SQL语言教程、案例和相关项目资源的推荐

SQL是一种用于管理和操作关系型数据库的语言,是数据驱动的应用程序的核心。

2024-02-18

JavaScript语言教程、案例和相关项目资源的推荐

JavaScript是一种广泛用于Web开发的脚本语言,也逐渐在其他领域扩展应用。

2024-02-18

PHP语言教程、案例和相关项目资源的推荐资料

PHP是一种广泛应用于Web开发的脚本语言,特别适合与HTML结合使用。

2024-02-18

C#语言教程、案例和相关项目资源的推荐资料

C#是一种多用途、类型安全的编程语言,常用于Windows应用程序、Web开发和游戏开发。

2024-02-18

Go语言教程、案例和相关项目资源的推荐

Go是一种开源的编程语言,具有简洁、高效和并发编程的特性,常用于后端开发、云计算和分布式系统等领域。

2024-02-18

Visual Basic语言教程、案例和相关项目资源的推荐

Visual Basic是一种基于.NET框架的编程语言,常用于Windows应用程序开发。它具有丰富的界面设计和数据库编程功能。

2024-02-18

Scratch语言教程、案例和相关项目资源的推荐

Scratch是一种图形化编程语言,旨在帮助初学者学习编程概念和逻辑思维。它适合儿童和初学者入门,并且可以用于创建简单的游戏、动画和交互式教育项目。

2024-02-18

Delphi语言教程、案例和相关项目资源的推荐

Delphi是一种面向对象的编程语言,常用于Windows平台的应用程序开发。它具有丰富的界面设计和数据库编程功能。

2024-02-18

Ruby语言教程、案例和相关项目资源的推荐

Ruby是一种动态、面向对象的编程语言,被广泛应用于Web开发、脚本编程和自动化任务等领域。

2024-02-13

Rust语言教程、案例和相关项目资源的推荐

Rust是一种系统级编程语言,注重安全性、并发性和性能。它被广泛应用于系统开发、Web开发、嵌入式系统等领域。

2024-02-13

Objective-C语言教程、案例和相关项目资源的推荐

Objective-C是一种用于iOS和Mac应用开发的编程语言,是开发Apple平台软件的主要语言之一。

2024-02-13

Kotlin语言教程、案例和相关项目资源的推荐

Kotlin是一种现代化的编程语言,可用于开发Android应用、Web应用和后端服务。它结合了面向对象和函数式编程的特性,并且与Java语言具有良好的互操作性。

2024-02-13

Fortran语言教程、案例和相关项目资源的推荐

Fortran是一种用于科学和工程计算的编程语言,特别适用于数值计算和高性能计算。

2024-02-13

Matlab语言教程、案例和相关项目资源的推荐

Matlab是一种在科学和工程领域广泛使用的编程语言,用于数值计算、数据分析、模拟建模等。

2024-02-13

Swift语言教程、案例和相关项目资源的推荐

Swift是一门由Apple开发的现代编程语言,用于iOS、macOS和其他Apple平台的应用程序开发。在学习Swift之前,建议您对基本的编程概念和iOS开发有一定的了解。

2024-02-13

Python语言教程、案例和相关项目资源的推荐

可以尝试参与开源Python项目、构建自己的Python应用程序或学习一些流行的Python库和框架,如Django、NumPy、Pandas等。这些实践和项目经验将有助于您提升Python编程技能和理解。

2024-02-13

Java语言教程、案例和相关项目资源的推荐

还可以尝试参与开源Java项目、构建自己的Java应用程序或学习一些流行的Java框架和库,如Spring、Hibernate、Apache Kafka等。这些实践和项目经验将有助于您提升Java编程技能和理解。

2024-02-13

汇编语言教程、案例和相关项目资源的推荐

汇编语言是一种底层的编程语言,需要对计算机体系结构和指令集有一定的了解。建议在学习汇编语言之前先掌握基本的计算机组成和计算机体系结构知识。

2024-02-13

python生成情人节主题的爱心图案代码

这个代码使用了Python的turtle库来绘制情人节主题的爱心图案。它通过控制画笔的移动和旋转来形成爱心的形状。

2024-02-13

python生成春节烟花项目代码

从预定义的列表中选择颜色和形状,模拟生成春节烟花效果。generate_firework()函数生成普通的春节烟花效果,而generate_dragon_firework()函数生成龙主题的烟花效果。

2024-02-13

基于JSP的学生宿舍管理系统

软件需求:MySQL5.7、idea、Navicat 内含:数据库文件、项目所有代码、课程报告、图片元素 学生宿舍管理系统对于一个学校来说是必不可少的组成部分。目前部分学校还停留在宿舍管理人员手工记录数据的最最初始阶段,手工记录对于规模小的学校来说还勉强可以接受,但对于学生信息量比较庞大,需要记录存档的数据比较多的高校来说,人工记录是相当麻烦的。而且当查找某条记录时,由于数据量庞大,还只能靠人工去一条条的查找,这样不但麻烦还浪费了许多时间,效率也比较低。当今社会是飞速进步的世界,原始的记录方式已经被社会所淘汰了,计算机化管理正是适应时代的产物。信息世界永远不会是一个平静的世界,当一种技术不能满足需求时,就会有新的技术诞生并取代旧技术。21世纪的今天,信息社会占着主流地位,计算机在各行各业中的运用已经得到普及,自动化、信息化的管理越来越广泛应用于各个领域。我们针对如此,设计了一套学生宿舍管理系统。

2024-01-19

基于vue的英语单词App

社会生活的信息化和经济的全球化,使英语的重要性日益突出。英语作为最重要的信息载体之一,已成为人类生活各个领域中使用最广泛的语言。许多国家在基础教育发展战略中,都把英语教育作为公民素质教育的重要组成部分,并将其摆在突出的地位。随着中国逐渐走进国际化,使用英语的范围也越来越广,现在在日常的生活中许多地方都用得到英语。而对于学习英语的基础,背单词的方式与方法也在不断的更新和进步。背单词软件是现下比较流行且实用有效的的工具,其功能也随着计算机时代的发展越来越强大与复杂,主要功能包括英汉查询,汉英查询,真人发音,背诵单词,默写单词,进度查询,添加单词等。不但节约了学习者的记忆时间,还可以帮助他们有规律的去复习,查找。随着智能手机的普及,Hybrid混合式移动应用程序平更加方便人们随时随地背英语记单词。本应用程序是一种利用vue.js、webpack等构建技术开发Hybrid混合式移动应用程序,使用HTML5、CSS3和JavaScript来实现的,主要采用Hbuilder X编辑器,使用谷歌浏览器作为调试工具。

2024-01-19

基于Cocos Creator的水果忍者游戏

软件需求:Cocos Creator 内含:项目所有代码、课程报告、图片元素 项目所有代码本人已经多次调试运行无问题 互联网技术不断革新,用户对于应用的要求在不断提高,使得技术标准也在不断进步。JavaScript的产生使得互联网有了很大进步,在此平台上,互联网更加成熟完善,数据传输更加安全可靠,用户操作更加方便。 在本游戏设计中,包含了水果模块、刀光模块、计分模块、主菜单模块等等。首先是主菜单数据的加载,当玩家按下鼠标,进行碰撞检测,判断刀光是否与目标物体有交点,若有则相应地将场景切换为Game或Detail。根据玩家所切水果,而在游戏场景中,若玩家切到水果,则分数增加,若水果掉落,则分数减少。若切到炸弹,则出现爆炸效果,重新绘制游戏场景并返回主菜单。 本项目是基于JavaScript语言,使用Cocos Creator引擎来开发的一个新款网页版的“水果忍者”游戏,用户通过浏览器进行切水果游戏。经过系统测试,本水果忍者游戏在各主要平台上运行正常,各游戏界面之间切换良好,模块间响应及时,声音播放自如,可以很好地实现游戏的功能。

2024-01-19

网页设计与制作课程设计之摄影分享网站

随着时代的变迁,已满足基本需求的人们要追求更高的需求领域。摄影已经很平常的走进广大的群众中,平时我们大家可以用手机拍摄一些自己身边发生的事情,摄影不在是人们的奢侈享受。但是随着科技的发展,拍摄工具一代一代的被淘汰,现在出现了许多的高级拍摄产品,虽然产品比较高级,没有高深的技术,很难拍摄好的作品,普通的产品用高深的技术也可以拍摄出好的作品。同时,为了更好的给摄影留下发展的一片天地,同时让更多的朋友了解摄影、爱上摄影、学会摄影、享受摄影,并能够拥有属于自己装满回忆的作品。我个人设计了一个关于摄影的网站。 本网站致力于提供一个交流摄影技术与想法的平台,使更多人来分享自己的摄影作品,同时也使对于有个性追求的摄影艺术工作者来说不再单调。随着各种专业与非专业的摄影器材的迅速普及,人们以及不仅仅为了满足以往拍摄照片自己欣赏的目的,而是希望能和自己更多的朋友或者是陌生人分享自己的摄影作作品,感受自己的生活,交流摄影技术与想法。现最有效的方式莫过于把自己的摄影作品上传到互联网上。

2024-01-19

计算机专业保研面试准备相关资料

计算机专业保研面试准备相关资料,内含个人简历、个人陈述、联系导师、自我介绍、英语问题、专业课知识等。

2024-01-19

美赛教程&建模&数据分析&案例分析&文档写作&编程实现等资源,助您成为专家

美赛教程&建模&数据分析&案例分析&文档写作&编程实现等资源,助您成为专家

2024-01-04

智能车竞赛介绍&竞赛案例&智能车开发技术&技术项目,助您成为专家

智能车竞赛介绍&竞赛案例&智能车开发技术&技术项目,助您成为专家

2024-01-04

蓝桥杯介绍&心得&往年试题&相关练习例,助您成为专家

蓝桥杯介绍&心得&往年试题&相关练习例,助您成为专家

2024-01-04

Web开发课程设计案例和数据库毕业设计实例,助您成为专家

Web开发课程设计案例和数据库毕业设计实例,助您成为专家

2024-01-04

数据库课程设计案例和数据库毕业设计实例,助您成为专家

数据库课程设计案例和数据库毕业设计实例,助您成为专家

2024-01-04

LaTeX的教程、论文模板、包含各种元素的样式文档和插件,助您成为专家

LaTeX的教程、论文模板、包含各种元素的样式文档和插件,助您成为专家

2024-01-04

GitHub的教程、常见问题解决方法和项目,助您成为专家

GitHub的教程、常见问题解决方法和项目,助您成为专家

2024-01-04

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除