扫描线三巨头 hdu1928hdu 1255 hdu 1542 [POJ 1151]

学习链接:http://blog.csdn.net/lwt36/article/details/48908031

学习扫描线主要学习的是一种扫描的思想,后期可以求解很多问题。

 

扫描线求矩形周长并

hdu 1928

Picture

Time Limit: 6000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 4795    Accepted Submission(s): 2339


Problem Description
A number of rectangular posters, photographs and other pictures of the same shape are pasted on a wall. Their sides are all vertical or horizontal. Each rectangle can be partially or totally covered by the others. The length of the boundary of the union of all rectangles is called the perimeter. 

Write a program to calculate the perimeter. An example with 7 rectangles is shown in Figure 1. 



The corresponding boundary is the whole set of line segments drawn in Figure 2. 



The vertices of all rectangles have integer coordinates.

 

Input
Your program is to read from standard input. The first line contains the number of rectangles pasted on the wall. In each of the subsequent lines, one can find the integer coordinates of the lower left vertex and the upper right vertex of each rectangle. The values of those coordinates are given as ordered pairs consisting of an x-coordinate followed by a y-coordinate. 

0 <= number of rectangles < 5000 
All coordinates are in the range [-10000,10000] and any existing rectangle has a positive area.

Please process to the end of file.

 

Output
Your program is to write to standard output. The output must contain a single line with a non-negative integer which corresponds to the perimeter for the input rectangles.

 

Sample Input
7 -15 0 5 10 -5 8 20 25 15 -4 24 14 0 -6 16 4 2 15 10 22 30 10 36 20 34 0 40 16

 

Sample Output
228

 

Source
IOI 1998

 

Recommend
linle

  1 //#pragma comment(linker, "/STACK:1024000000,1024000000")
  2 #include<cstdio>
  3 #include<iostream>
  4 #include<cstring>
  5 #include<algorithm>
  6 #include<cmath>
  7 #define clr(x) memset(x,0,sizeof(x))
  8 #define MAXN 50010
  9 using namespace std;
 10 struct edgx
 11 {
 12     int l,u,x;
 13     int d;
 14 }edgex[MAXN];
 15 struct edgy
 16 {
 17     int l,r,y;
 18     int d;
 19 }edgey[MAXN];
 20 struct seg
 21 {
 22     int l,r,cov,len;
 23 }segt[MAXN<<2];
 24 int cntx,cnty;
 25 int x[MAXN],y[MAXN],vec[MAXN];
 26 bool cmpy(edgy a,edgy b)
 27 {
 28     if(a.y==b.y) return a.d>b.d;
 29     return a.y<b.y;
 30 }
 31 bool cmpx(edgx a,edgx b)
 32 {
 33     if(a.x==b.x) return a.d>b.d;
 34     return a.x<b.x;
 35 }
 36 void init(int i,int l,int r)
 37 {
 38     segt[i]=(seg){l,r,0,0};
 39     if(l==r)
 40         return ;
 41     int mid=(l+r)>>1;
 42     init(i<<1,l,mid);
 43     init(i<<1|1,mid+1,r);
 44     return ;
 45 }
 46 void pushup(int i)
 47 {
 48     if(segt[i].cov)
 49     {
 50         segt[i].len=vec[segt[i].r+1]-vec[segt[i].l];
 51     }
 52     else if(segt[i].l==segt[i].r)
 53     {
 54         segt[i].len=0;
 55     }
 56     else
 57     {
 58         segt[i].len=segt[i<<1].len+segt[i<<1|1].len;
 59     }
 60     return ;
 61 }
 62 void update(int i,int l,int r,int value)
 63 {
 64     if(segt[i].l>=l && segt[i].r<=r)
 65     {
 66         segt[i].cov+=value;
 67         pushup(i);
 68         return ;
 69     }
 70     int mid=(segt[i].l+segt[i].r)>>1;
 71     if(mid>=r)
 72     {
 73         update(i<<1,l,r,value);
 74     }
 75     else if(mid<l)
 76     {
 77         update(i<<1|1,l,r,value);
 78     }
 79     else
 80     {
 81         update(i<<1,l,r,value);
 82         update(i<<1|1,l,r,value);
 83     }
 84     pushup(i);
 85     return ;
 86 }
 87 int main()
 88 {
 89     int x1,x2,y1,y2,n,m,T,ans,l,r,k;
 90     while(scanf("%d",&n)!=EOF)
 91     {
 92         cntx=0;
 93         cnty=0;
 94         for(int i=1;i<=n;i++)
 95         {
 96             scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
 97             edgex[++cntx]=(edgx){y1,y2,x1,1};
 98             x[cntx]=x1;
 99             edgex[++cntx]=(edgx){y1,y2,x2,-1};
100             x[cntx]=x2;
101             edgey[++cnty]=(edgy){x1,x2,y1,1};
102             y[cnty]=y1;
103             edgey[++cnty]=(edgy){x1,x2,y2,-1};
104             y[cnty]=y2;
105         }
106         n<<=1;
107         ans=0;
108         memcpy(vec,x,sizeof(x));
109         sort(vec+1,vec+n+1);
110         m=unique(vec+1,vec+n+1)-vec-1;
111         sort(edgey+1,edgey+n+1,cmpy);
112         init(1,1,m);
113         for(int i=1;i<=n;i++)
114             if(edgey[i].l<edgey[i].r)
115             {
116                 k=segt[1].len;
117                 l=lower_bound(vec+1,vec+m+1,edgey[i].l)-vec;
118                 r=lower_bound(vec+1,vec+m+1,edgey[i].r)-vec;
119                 update(1,l,r-1,edgey[i].d);
120                 ans+=abs(segt[1].len-k);
121             }
122         memcpy(vec,y,sizeof(y));
123         sort(vec+1,vec+n+1);
124         m=unique(vec+1,vec+n+1)-vec-1;
125         sort(edgex+1,edgex+n+1,cmpx);
126         init(1,1,m);
127         for(int i=1;i<=n;i++)
128             if(edgex[i].l<edgex[i].u)
129             {
130                 k=segt[1].len;
131                 l=lower_bound(vec+1,vec+m+1,edgex[i].l)-vec;
132                 r=lower_bound(vec+1,vec+m+1,edgex[i].u)-vec;
133                 update(1,l,r-1,edgex[i].d);
134                 ans+=abs(segt[1].len-k);
135             }
136         printf("%d\n",ans);
137     }
138     return 0;
139 }

 

hdu 1255 矩阵面积交

覆盖的面积

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 5718    Accepted Submission(s): 2854


Problem Description
给定平面上若干矩形,求出被这些矩形覆盖过至少两次的区域的面积.

 

Input
输入数据的第一行是一个正整数T(1<=T<=100),代表测试数据的数量.每个测试数据的第一行是一个正整数N(1<=N<=1000),代表矩形的数量,然后是N行数据,每一行包含四个浮点数,代表平面上的一个矩形的左上角坐标和右下角坐标,矩形的上下边和X轴平行,左右边和Y轴平行.坐标的范围从0到100000.

注意:本题的输入数据较多,推荐使用scanf读入数据.

 

Output
对于每组测试数据,请计算出被这些矩形覆盖过至少两次的区域的面积.结果保留两位小数.

 

Sample Input
2 5 1 1 4 2 1 3 3 7 2 1.5 5 4.5 3.5 1.25 7.5 4 6 3 10 7 3 0 0 1 1 1 0 2 1 2 0 3 1

 

Sample Output
7.63 0.00

 

Author
Ignatius.L & weigang Lee

  1 //#pragma comment(linker, "/STACK:1024000000,1024000000")
  2 #include<cstdio>
  3 #include<iostream>
  4 #include<cstring>
  5 #include<algorithm>
  6 #include<cmath>
  7 #define clr(x) memset(x,0,sizeof(x))
  8 #define MAXN 10010
  9 using namespace std;
 10 struct edg
 11 {
 12     double l,r,y;
 13     int d;
 14 }edge[MAXN];
 15 struct seg
 16 {
 17     int l,r,cov;
 18     double len1,len2;
 19 }segt[MAXN<<2];
 20 int cnt;
 21 double x[MAXN];
 22 bool cmp(edg a,edg b)
 23 {
 24     if(a.y==b.y) return a.d>b.d;
 25     return a.y<b.y;
 26 }
 27 double max(double a,double b)
 28 {
 29     return a>b?a:b;
 30 }
 31 void init(int i,int l,int r)
 32 {
 33     segt[i]=(seg){l,r,0,0,0};
 34     if(l==r)
 35         return ;
 36     int mid=(l+r)>>1;
 37     init(i<<1,l,mid);
 38     init(i<<1|1,mid+1,r);
 39     return ;
 40 }
 41 void pushup(int i)
 42 {
 43     if(segt[i].cov>=2)
 44     {
 45         segt[i].len2=segt[i].len1=x[segt[i].r+1]-x[segt[i].l];
 46     }
 47     else if(segt[i].cov==1)
 48     {
 49         segt[i].len1=x[segt[i].r+1]-x[segt[i].l];
 50         if(segt[i].l==segt[i].r)
 51             segt[i].len2=0;
 52         else
 53             segt[i].len2=max(segt[i<<1].len1,segt[i<<1].len2)+max(segt[i<<1|1].len1,segt[i<<1|1].len2);
 54     }
 55     else
 56     {
 57         if(segt[i].l==segt[i].r)
 58         {
 59             segt[i].len1=segt[i].len2=0;
 60         }
 61         else
 62         {
 63             segt[i].len2=segt[i<<1].len2+segt[i<<1|1].len2;
 64             segt[i].len1=segt[i<<1].len1+segt[i<<1|1].len1;
 65         }
 66     }
 67     return ;
 68 }
 69 void update(int i,int l,int r,int value)
 70 {
 71     if(segt[i].l>=l && segt[i].r<=r)
 72     {
 73         segt[i].cov+=value;
 74         pushup(i);
 75         return ;
 76     }
 77     int mid=(segt[i].l+segt[i].r)>>1;
 78     if(mid>=r)
 79     {
 80         update(i<<1,l,r,value);
 81     }
 82     else if(mid<l)
 83     {
 84         update(i<<1|1,l,r,value);
 85     }
 86     else
 87     {
 88         update(i<<1,l,r,value);
 89         update(i<<1|1,l,r,value);
 90     }
 91     pushup(i);
 92     return ;
 93 }
 94 int main()
 95 {
 96     int T,n,m,k,u,v;
 97     double x1,x2,y1,y2,ans,l,r;
 98     scanf("%d",&T);
 99     while(T--)
100     {
101         scanf("%d",&n);
102         cnt=0;
103         ans=0;
104         for(int i=1;i<=n;i++)
105         {
106             scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2);
107             edge[++cnt]=(edg){x1,x2,y1,1};
108             x[cnt]=x1;
109             edge[++cnt]=(edg){x1,x2,y2,-1};
110             x[cnt]=x2;
111         }
112         n<<=1;
113         sort(x+1,x+n+1);
114         m=unique(x+1,x+n+1)-x-1;
115         sort(edge+1,edge+n+1,cmp);
116         init(1,1,m);
117         for(int i=1;i<n;i++)
118             if(edge[i].r>edge[i].l)
119             {
120                 l=lower_bound(x+1,x+m+1,edge[i].l)-x;
121                 r=lower_bound(x+1,x+m+1,edge[i].r)-x;
122                 update(1,l,r-1,edge[i].d);
123                     ans+=segt[1].len2*(edge[i+1].y-edge[i].y);
124             }
125         printf("%0.2lf\n",ans);
126     }
127     return 0;
128 }

 

 

hdu 1542 [POJ 1151] 区间面积并

Atlantis

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 12537    Accepted Submission(s): 5257


Problem Description
There are several ancient Greek texts that contain descriptions of the fabled island Atlantis. Some of these texts even include maps of parts of the island. But unfortunately, these maps describe different regions of Atlantis. Your friend Bill has to know the total area for which maps exist. You (unwisely) volunteered to write a program that calculates this quantity.

 

Input
The input file consists of several test cases. Each test case starts with a line containing a single integer n (1<=n<=100) of available maps. The n following lines describe one map each. Each of these lines contains four numbers x1;y1;x2;y2 (0<=x1<x2<=100000;0<=y1<y2<=100000), not necessarily integers. The values (x1; y1) and (x2;y2) are the coordinates of the top-left resp. bottom-right corner of the mapped area.

The input file is terminated by a line containing a single 0. Don’t process it.

 

Output
For each test case, your program should output one section. The first line of each section must be “Test case #k”, where k is the number of the test case (starting with 1). The second one must be “Total explored area: a”, where a is the total explored area (i.e. the area of the union of all rectangles in this test case), printed exact to two digits to the right of the decimal point.

Output a blank line after each test case.

 

Sample Input
2 10 10 20 20 15 15 25 25.5 0

 

Sample Output
Test case #1 Total explored area: 180.00

 

Source
Mid-Central European Regional Contest 2000

卡格式,不说了,都是泪。
  1 //#pragma comment(linker, "/STACK:1024000000,1024000000")
  2 #include<cstdio>
  3 #include<iostream>
  4 #include<cstring>
  5 #include<algorithm>
  6 #include<cmath>
  7 #define clr(x) memset(x,0,sizeof(x))
  8 #define MAXN 10010
  9 using namespace std;
 10 struct edg
 11 {
 12     double l,r,y;
 13     int d;
 14 }edge[MAXN];
 15 struct seg
 16 {
 17     int l,r,cov;
 18     double len;
 19 }segt[MAXN<<2];
 20 int cnt;
 21 double x[MAXN];
 22 bool cmp(edg a,edg b)
 23 {
 24     if(a.y==b.y) return a.d>b.d;
 25     return a.y<b.y;
 26 }
 27 double max(double a,double b)
 28 {
 29     return a>b?a:b;
 30 }
 31 void init(int i,int l,int r)
 32 {
 33     segt[i]=(seg){l,r,0,0};
 34     if(l==r)
 35         return ;
 36     int mid=(l+r)>>1;
 37     init(i<<1,l,mid);
 38     init(i<<1|1,mid+1,r);
 39     return ;
 40 }
 41 void pushup(int i)
 42 {
 43     if(segt[i].cov)
 44     {
 45         segt[i].len=x[segt[i].r+1]-x[segt[i].l];
 46     }
 47     else if(segt[i].l==segt[i].r)
 48     {
 49         segt[i].len=0;
 50     }
 51     else
 52     {
 53         segt[i].len=segt[i<<1].len+segt[i<<1|1].len;
 54     }
 55     return ;
 56 }
 57 void update(int i,int l,int r,int value)
 58 {
 59     if(segt[i].l>=l && segt[i].r<=r)
 60     {
 61         segt[i].cov+=value;
 62         pushup(i);
 63         return ;
 64     }
 65     int mid=(segt[i].l+segt[i].r)>>1;
 66     if(mid>=r)
 67     {
 68         update(i<<1,l,r,value);
 69     }
 70     else if(mid<l)
 71     {
 72         update(i<<1|1,l,r,value);
 73     }
 74     else
 75     {
 76         update(i<<1,l,r,value);
 77         update(i<<1|1,l,r,value);
 78     }
 79     pushup(i);
 80     return ;
 81 }
 82 int main()
 83 {
 84     int T,n,m,k,u,v;
 85     double x1,x2,y1,y2,ans,l,r;
 86     int kase=0;
 87     while(scanf("%d",&n) && n!=0)
 88     {
 89         printf("Test case #%d\n",++kase);
 90         cnt=0;
 91         ans=0;
 92         for(int i=1;i<=n;i++)
 93         {
 94             scanf("%lf%lf%lf%lf",&x1,&y1,&x2,&y2);
 95             edge[++cnt]=(edg){x1,x2,y1,1};
 96             x[cnt]=x1;
 97             edge[++cnt]=(edg){x1,x2,y2,-1};
 98             x[cnt]=x2;
 99         }
100         n<<=1;
101         sort(x+1,x+n+1);
102         m=unique(x+1,x+n+1)-x-1;
103         sort(edge+1,edge+n+1,cmp);
104         init(1,1,m);
105         for(int i=1;i<n;i++)
106             if(edge[i].r>edge[i].l)
107             {
108                 l=lower_bound(x+1,x+m+1,edge[i].l)-x;
109                 r=lower_bound(x+1,x+m+1,edge[i].r)-x;
110                 update(1,l,r-1,edge[i].d);
111                     ans+=segt[1].len*(edge[i+1].y-edge[i].y);
112             }
113         printf("Total explored area: %0.2lf\n",ans);
114         printf("\n");
115     }
116     return 0;
117 }

 

转载于:https://www.cnblogs.com/wujiechao/p/6730638.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/572567.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

希尔排序 最坏时间_排序算法(2)

本文介绍插入排序和希尔排序&#xff0c;插入排序是较为常见的排序算法&#xff0c;希尔排序也是基础的排序算法&#xff0c;废话不多说&#xff0c;具体来看一下两种算法。山插入排序插入排序的基本思想是拿到下一个插入元素&#xff0c;在已经有序的待排数组部分找到自己的位…

多对一(一对多)的双向关联

一个组&#xff08;Group&#xff09;有多个用户&#xff08;User&#xff09;&#xff0c;进行多对一&#xff08;一对多&#xff09;的双向配置&#xff0c;在数据库中生成的表结构如下图&#xff1a; Annotation配置&#xff1a; Group: 1 package com.bjsxt.hibernate;2 3 …

隧道不能访问web vxaln_SpringBoot实现本地存储文件上传及提供HTTP访问服务

笔者计划为大家介绍分布式文件系统&#xff0c;用于存储应用的图片、word、excel、pdf等文件。在开始介绍分布式文件系统之前&#xff0c;为大家介绍一下使用本机存储来存放文件资源。二者的核心实现过程是一样的&#xff1a;上传文件&#xff0c;保存文件(本节是本地磁盘)返回…

修改form_Vue通过阿里云oss的url连接直接下载文件并修改文件名

我测试过很多遍,想要通过a标签的形式来直接点击url下载文件并重命名但是都失败了,最终只能下载却不能重命名 所以 换了java后台来修改名字.以下代码我做的网页是点击文件直接下载直接下载下来了,一开始的文件名是上传到oss时以id命名的名字,现在下载的时候想改名,遇到了问题,所…

STM32学习笔记(五)——通用定时器计数延时

STM32定时器概述 STM32F40x系列总共最多有14个定时器&#xff0c;定时器分为三类&#xff1a;基本定时器、通用定时器和高级定时器。它们的都是通过计数来达到定时的目的&#xff0c;和51的定时器差不多&#xff0c;基本原理都是一样的&#xff0c;就是功能多了一些&#xff0c…

第十九讲:职责链模式

public class CarBodyHandler extends CarHandler{Overridepublic void HandlerCar() {// TODO Auto-generated method stubSystem.out.println("组装车身");}} public abstract class CarHandler {public abstract void HandlerCar(); } public class CarHeadHandle…

四阶行列式直接展开_四阶行列式的完全展开式共有多少项

展开全部 共24项。 1.将该行列式前三列重复书写在该行列式的右边,可在前四列中作出两条对角线,然e5a48de588b662616964757a686964616f31333365663463后在此七列中作出相应的平行线,可得(图表一) 2.作乘积关系,可得如下八项: a11a22a33a44,a12a23a34a41,a13a24a31a42,a14a2…

c++ 返回智能指针_C++核心指南(17) I.11 禁止使用指针(T*)或引用(T)来转移所有权...

I.11: 永远不要使用原始指针(T*)或引用(T&)来转移所有权原因如果对调用者或被调用者是否拥有对象有任何疑问&#xff0c;就会发生泄漏或过早析构。示例考虑:X* compute(args) // 不要这样做 { X* res new X{}; // ... return res; }谁来删除返回的X&#xff1f;当compute返…

mysql8.0.13 32位下载_MySQL8.0下载-MySQL数据库8.0下载 v8.0.11官方版(32位/64位)--pc6下载站...

mysql是一款数据库管理系统&#xff0c;mysql一般网站开发者或者数据库开发者会用到&#xff0c;mysql拥有体积小巧、读取和存储速度快的特点&#xff0c;新版本完全脱了MylSAM存储引擎&#xff0c;改善了扫描性能&#xff0c;同时还重构了sql分析器&#xff0c;赶快下载使用吧…

手游产品经理初探(三)产品中的玩家行为

国内做手游的团队非常多都是一大抄&#xff0c;但非常多时候我们都没有抄到核心的东西&#xff0c;所谓的形象神不象就是这样。那么我们来看一个案例&#xff1a;这个界面是big fish做的玩家送礼物的画面。我们知道在社交类的游戏里面这是一个非经常见的功能&#xff0c;但非常…

mysql ndb是什么_MySQL NDB Cluster介绍

最近翻译了好几篇关于NDB的文章&#xff0c;相信有很多人会有疑问&#xff0c;NDB Cluster究竟是个什么东西&#xff1f;它是一款新产品吗&#xff1f;它和InnoDB Cluster有什么不同&#xff1f;它是MySQL吗&#xff1f;它怎么使用&#xff1f;在这篇文章里&#xff0c;我将为大…

orm和mysql_orm与mysql

一. orm执行原生sql语句在模型查询API不够用的情况下&#xff0c;我们还可以使用原始的SQL语句进行查询。Django 提供两种方法使用原始SQL进行查询&#xff1a;一种是使用raw()方法&#xff0c;进行原始SQL查询并返回模型实例&#xff1b;另一种是完全避开模型层&#xff0c;直…

课程作业2

作业二 题目 编写一个程序&#xff0c;要求根据给定的圆的半径求圆的面积&#xff0c;并将求得的结果打印出来。 要求&#xff1a; 输入输出采用cin和cout。 建立一个工程&#xff0c;将程序写成两个.cpp和一个.h的形式。 要求程序必须要对变量的定义和各个函数模块进行注释。 …

webform中提交按钮同时执行更新和插入操作_软件测试中的功能测试点(三)

26.输入法半角全角检查再输入信息中&#xff0c;输入一个或连串空格&#xff0c;查看系统如何处理&#xff0c;如对于要求输入符点型数据的项中&#xff0c;输入全角的小数点&#xff08;“。”或“.”&#xff0c;如4.5&#xff09;&#xff1b;输入全角的空格等。 27.密码检查…

PAT甲题题解-1091. Acute Stroke (30)-BFS

题意&#xff1a;给定三维数组&#xff0c;0表示正常&#xff0c;1表示有肿瘤块&#xff0c;肿瘤块的区域>t才算是肿瘤&#xff0c;求所有肿瘤块的体积和 这道题一开始就想到了dfs或者bfs&#xff0c;但当时看数据量挺大的&#xff0c;以为会导致栈溢出&#xff0c;所以并没…

python如何获取请求的url_听说你在学习:如何通过代码请求URL地址

最近比较忙碌&#xff0c;都没有时间更新公众号文章&#xff0c;表示比较惭愧。最近翻看了一下自己的博客&#xff0c;发现这篇文章的内容还是挺实用&#xff0c;所以&#xff0c;想分享给大家&#xff0c;欢迎阅读。在后续&#xff0c;我会从一个范围的角度进行编写一系列文章…

在sql中将表建在别的构件中用什么语句_SQL实战

学习主题&#xff1a;SQL学习目标&#xff1a;1 掌握子查询1. 什么是子查询(1) 什么是子查询&#xff1f;答&#xff1a;当一个查询是另一个查询的条件时&#xff0c;称之为子查询。简而言之&#xff1a;嵌套查询(2) 子查询执行的顺序是什么&#xff1f;答&#xff1a;先进行内…

数据结构入门之链表(C语言实现)

这篇文章主要是根据《数据结构与算法分析--C语言描述》一书的链表章节内容所写&#xff0c;该书作者给出了链表ADT的一些方法&#xff0c;但是并没有给出所有方法的实现。在学习的过程中将练习的代码记录在文章中&#xff0c;并添加了一些在测试中需要的函数&#xff0c;因此可…

php 验证码需开启gd2

转载于:https://www.cnblogs.com/zhangj391/p/6794555.html

python中如何将字典直接变成二维数组_python基础知识(列表、字典、二维数组)...

记得改参数&#xff01;&#xff01;&#xff01;(1)简述列表(list)结构的特点。List(列表)List的元素以线性方式存储&#xff0c;可以存放重复对象&#xff0c;List主要有以下两个实现类&#xff1a;ArrayList : 长度可变的数组&#xff0c;可以对元素进行随机的访问&#xff…