国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

代寫COMP26020、代做Java,c++語言編程

時間:2024-02-15  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Lab Exercises for COMP26020 Part 2:
Functional Programming in Haskell
December 8, 2023
The deadline for this lab is 6pm on 16/2/2024.
This lab has three exercises, for a total of ten marks. The first two exercises
together are worth eight marks, and I advise all students to focus exclusively
on these exercises. Seven marks are given based on automated testing, and one
is reserved for human judgement by the marker. These exercises are described
in Section 1 below. Section 2 contains submission information and a checklist
of tasks for the first two exercises.
If you are certain that your solutions are completely correct you might like
to look at Section 3 below, which describes a thought-provoking, open-ended
exercise requiring significant creativity, worth two marks. It is designed to be
extremely difficult, and is not a practical way of gaining marks!
1 Simple Quadtrees
This lab exercise concerns as data structure called a ‘quadtree’ which can be
used to represent an image. There are sophisticated versions of the quadtree
data structure, but for the purposes of the lab we will use a very simple version
of the idea.
Suppose we want to represent a square, black and white bitmap image which
is 2n by 2n pixels. The usual way to do this is as a 2n by 2n grid of bits, but
this can be wasteful if there are large monochrome areas.
1
In that case, a simple optimization is to think of the image as split into four
sub-images of size 2n−1 by 2n−1 which we will call ‘quadrants’. If the sub-image
is all one colour, we can represent this by one bit of information.
But if it contains different colours, we can subdivide again, and keep going
recursively until we do get sub-images which are only one colour. (This definitely
happens once we get down to the scale of the original pixels!). We call these
single colour sub-images in the final data structure ‘cells’.
This lab exercise is about the resulting data structure, the tree of cells. You
don’t have to care about the details of an original image which such a structure
might have come from – for instance you don’t need to record the dimensions in
pixels of the original image. That means that your data structure is correct if it
represents the way the image looks geometrically, ignoring the size. Nor do you
need to worry about whether a particular structure is the most efficient way of
representing a given image. In fact it is useful to allow non-optimal quadtrees.
The way you think about the data structure could differ from someone else by
rotation, scaling, and even reflection, as well as the details of how you order and
organize the various components, and you can both be correct as long as you
are each internally self-consistent.
For that reason, if you are working out what the exercises mean with a friend,
or asking something on the forum, you should describe everything in terms of
pictures, or describe quadtrees using the four functions in Exercise 1 below, so
that you don’t accidentally discuss the details of your data structure.
2
1.1 Exercise 1: (3 marks) representing quadtrees
For this exercise, you should define an Algebraic Data Type (that means a
custom type defined by the data keyword) to model quadtrees in the sense
described above. Do this in whatever way you like (as long as you use an
Algebraic Data Type), but provide four functions with the following properties:
• A function allBlack which takes an Int number n and returns your
representation of a single cell which is all black. The argument n represents
the image ‘size’, but since all-black images of any size look the same, you
can ignore this argument! (See notes below...)
• A function allWhite which takes an Int number n, as above, and returns
your representation of a single cell which is all white.
• A function clockwise which takes four quadtrees and returns the quadtree
whose four subtrees are the given inputs, arranged in a clockwise order.
• A function anticlockwise which takes four quadtrees and returns the
quadtree whose four subtrees are the inputs, arranged in an anticlockwise
order.
Note the following:
• For allBlack and allWhite the ‘size’ argument can be ignored, but for
some ways of modelling it might be useful. Neither using the argument
nor ignoring it is the ‘best’ approach: there are a huge number of different
correct solutions! You can assume that any testing data come from real
bitmaps (square bitmaps whose width is a power of 2), and the ‘size’
arguments tell us how many pixels wide each cell is in the originating
bitmap.
• A clockwise ordering means that in the tree clockwise a b c d, the subtree b is located in the quadrant next to a which is reached by moving
clockwise, c is in the quadrant reached by moving clockwise from b, d
is in the quadrant reached by moving clockwise from c, and a is in the
quadrant reached by moving clockwise from d.
• For clockwise and anticlockwise it doesn’t matter how subtrees are
stored or ordered internally, or which quadrant comes ‘first’ – a correct
solution is still correct if we rotate, reflect, or scale every quadtree and
all tests involved in marking will respect this. However, the choices you
make should be consistent: the clockwise and anticockwise orderings must
be opposite to each other, and all uses of clockwise and anticlockwise
in your solution should make the same choice about which quadrant the
first argument goes in!
You must use at least one Algebraic Data Type in your model, but you may
use several. For each Algebraic Data Type, you must add the expression
deriving (Eq, Show) to the end of the line which defines the datatype.
3
For example, below is an Algebraic Data Type representing a list of Int
values
data MyList = Elist |
Cons Int MyList
If I used such a data structure in my solution, I would append the expression
above to the end of the definition, to obtain
data MyList = Elist |
Cons Int MyList deriving (Eq, Show)
Make sure you have done this for all the Algebraic Data Types you have defined.
For now we treat this as a ‘magic incantation’ which lets Haskell know we want
to be able to print values of our datatype and compare them for equality. What
is really going on in this expression will be covered in the videos in the last week
of the Haskell part.
Note that the four functions completely specify how the quadtree is split up
into cells.: it is best not to optimize when given an input which is not efficiently
encoded. You won’t actually lose marks for this, but it makes exercise 2 harder
if you optimize the tree structure!
4
Marking Exercise 1
This exercise is has a total of three marks available. The marks will be
assigned based on testing on quadtrees of different sizes and complexities.
The tests will consist of checking consistency properties which we expect to
hold. For example, we expect
clockwise (allBlack 1) (allBlack 1) (allWhite 1) (allWhite 1) ==
anticlockwise (allBlack 1) (allWhite 1) (allWhite 1) (allBlack 1)
The tests will also involve checking inequalities such as
clockwise (allBlack 1) (allBlack 1) (allWhite 1) (allWhite 1) /=
anticlockwise (allBlack 1) (allBlack 1) (allWhite 1) (allBlack 1)
Otherwise you could represent all trees with a single value! Note however that
they do not check anything which depends on the size of the image, so for
instance they never check whether allBlack 128 == allBlack 2, because geometrically these look the same, so you are free to represent them as the same or
different, whichever works for your data structure. The tests only check equalities and inequalities which must hold for all correct representations.
You solution will receive:
• One mark for passing the tests on quadtrees described at most one use
of clockwise or anticlockwise (so they either have 1 cell or 4 cells),
• One mark for passing the tests on quadtrees which represent 4 by 4
images (they can have up to 16 cells, but may have fewer if they have an
interesting structure),
• One mark for passing the tests on all quadtrees,
for a total of three marks. The quadtrees used for testing are no larger than
required to represent a 210 by 210 image. You need only consider square images
whose dimensions are powers of 2. Your solution must use at least one Algebraic
Data Type to qualify for any of the marks above.
5
1.2 Exercise 2: (4 marks) A crude ‘blurring’ operation
For this exercise, you should define a function blur which takes a quadtree as
input and returns a quadtree as output. It should not change the structure of
the quadtree1
, but it should change the data representing the black and white
colours.
To find the colour of a cell in the output blur q we look at all of its ‘neighbours’:
other cells which touch it along an edge (or part of an edge), not just a corner.
The colour of a cell in blur q should be the opposite of the colour of that cell
in the input q if and only if more than half of its neighbours have the opposite
colour in q. E.g. if a cell is black in the input q then it should be white in the
output blur q if and only if in q more of its neighbours are white cells than
black. You can think of such a function as an extremely crude approximation
to a blurring operation, although it is not practical to use it for that purpose!
For example
If your implementations of clockwise and anticlockwise perform any optimisations, your
implementation of blur should perform matching optimisations to the result of the operation
described; most students will not need to worry about this as there are no marks for optimizing
clockwise or anticlockwise.
6
Note that cells at the border usually have fewer neighbours, so the definition
behaves quite strangely there. For example
blur
which shows that in many cases the approximation to ‘blurring’ is very bad indeed! The image below shows how many neighbours each cell of the quadtrees
above has. Note that a cell is not one of its own neighbours.
Coming up with a solution all at once is hard! For that reason, the mark scheme
below gives most of the marks for solving special cases. It may be best to try
the special cases first if you can’t see how to solve the whole problem straight
away. To define the special cases, let us call a quadtree striped if it satisfies
the following recursive specification:
• Base case: For all Int values z (satisfying the conditions from Exercise1),
the quadtrees allBlack z and allWhite z are striped quadtrees;
• Step case: If q1 and q2 are striped quadtrees, then clockwise q1 q1 q2 q2
is a striped quadtree.
Try drawing some pictures of striped quadtrees by building up from the
base case. Notice how q1 and q2 are repeated in the step case – this repetition
means that we already know the values of a cell’s neighbours in one dimension.
(Though we do still have to worry about whether is has any neighbours in the
other dimension, or if it is on the border.)
7
Marking
This exercise is has a total of four marks available. The marks will be assigned
based on testing on quadtrees of different sizes and complexities.
The tests will consist of checking properties which we expect to hold. For
example,
blur (clockwise (allWhite 2)
(clockwise (allBlack 1) (allBlack 1)
(allBlack 1) (allWhite 1))
(allBlack 2) (allWhite 2)) ==
clockwise (allWhite 2)
(clockwise (allWhite 1) (allBlack 1)
(allBlack 1) (allBlack 1))
(allWhite 2) (allWhite 2)
You solution will receive:
• One mark for implementing a function blur of the correct type which
does not ‘go wrong’ as long as its argument is a suitable quadtree (one
which could come from a real image),
• One mark for passing the tests on striped quadtrees which represent 1
by 1, 2 by 2, or 4 by 4 images (so have at most 16 cells),
• One mark for passing the tests on all striped quadtrees, and
• One mark for passing the tests on all quadtrees,
for a total of four marks. The maximum size for test inputs is the same as for
Exercise 1.
One additional mark is available for the first two exercises according to the
marker’s judgement. This mark will be given for clearly commented code which
explains your solution or where you got stuck. But it may also be given for
other good work towards solving any of the above if the marker feels, according
to their judgement, that it is not reflected fairly in the automated mark.
8
2 Submission
To submit the exercises above, clone the git repository
26020-lab3-s-haskell_<your username> present in the department’s GitLab.
In that directory, save your submission as submission.hs
Remove any definition of main from submission.hs. Make sure you have done
git add submission.hs.
A testing script is provided called check_submission.sh (note ‘sh’ not
‘hs’!). Running this file checks that your submission will work with the automated marking script. Please check at least once that you can run this successfully on a lab machine, as this is the set-up used to mark your code.
Note that it creates/overwrites a file called check_submission_temp_file.hs
by concatenating submission.hs and two testing files. It does not remove this
file after running, so you can inspect it if anything went wrong.
This script checks that your solution is in the right format for the automated tests (e.g. that you have used the right function names, added the
deriving (Eq, Show) incantation where necessary, and have remembered to
remove any definition of main) but it does not test your submission well!
Come up with your own test examples, and reason about whether your code is
correct for all inputs!
You might have to make check_submission.sh executable by running
chmod u+x check_submission.sh.
Once check_submission.sh tells you that all its checks have passed, double
check that you have added submission.hs and push the files on the master
branch.
If you decide to try the creative exercise below and think you have succeeded
or very nearly succeeded, add your work to the repo as creative.hs. Students
are strongly encouraged to focus on the exercises above.
Once you are confident that your solution is correct (i.e. after doing more
testing than just running the format checking script!), push your final version
on the master branch and create a tag named lab3-submission to indicate
that the submission is ready to be marked.
In most cases marking will be done without any further input needed from you
once you have submitted, but in some cases we may need you to explain your
solution face-to-face in order to complete marking.
9
Talking to each other and using the internet
When talking to other students about the coursework, keep in mind some “do”s
and “don’t”s:
• Do discuss what the exercise means, e.g. what the function blur does to
examples in terms of inputs and outputs.
• Do discuss example quadtrees in terms of pictures or geometry which
doesn’t change when rotated, translated, or scaled.
• Do discuss example quadtrees in terms of the four functions allBlack ,
allWhite , clockwise and anticlockwise.
• Do discuss general Haskell questions, e.g. how to write an Algebraic Data
Type using data, how Maybe or lists work, how to bracket when defining
recusive functions, etc.
But:
• Don’t discuss quadtrees using terminology not in this lab script – that
probably contains ideas about how your solution works!
• Don’t discuss how to define a data structure for quadtrees (inlcuding for
instance where your solution puts which quadrant of the pictures)
• Don’t discuss how to define blur or similar operations in terms of recursive functions
• Don’t show anyone your solution to get help with Haskell syntax – instead
try to describe the problem in general or reproduce it in an unrelated
example
Talking to others is an important way to learn a subject, and I encourage you
to discuss Haskell in general. When discussing the lab exercises with other students, stick to the rules above.
Similarly, when using the internet to help with this coursework
• Do use non-interactive resources like tutorials and documentation. I recommend
– https://en.wikibooks.org/wiki/Haskell/Other_data_structures
– https://www.haskell.org/tutorial/goodies.html
• Do ask general Haskell questions (not based on the lab exercises!) in
forums, chatrooms etc.
But:
• Don’t discuss anything derived from the lab exercises on interactive services like forums, chatrooms, Stack Exchange, etc.
• Don’t upload the lab script or anything derived from lab work to filesharing websites, document-sharing websites, or notes-sharing websites.
10
Checklist for Exercises 1 and 2
Exercise Task Marks Done?
1 Create a data type using data to model quadtrees
1
Ensure any data type declarations you use end
with deriving (Eq,Show)
1 Write the allBlack function
1 Write the allWhite function
1 Write the clockwise function
1 Write the anticlockwise function
1
Ensure the functions work for quadtrees with
between 1 and 4 cells
1 mark
1
Ensure the functions work for quadtrees with
at most 16 cells
1 mark
1 Ensure the functions work for all quadtrees 1 mark
2 Write a function blur from quadtrees
to quadtrees (which does anything!)
2
Ensure your function does not ‘go wrong’ for
any well-defined input
1 mark
2
Make the blur function work correctly for
striped quadtrees with at most 16 cells
1 mark
2
Make the blur function work correctly for all
striped quadtrees
1 mark
2 Make the blur function work for all quadtrees 1 mark
all Document your code clearly with comments 1 mark
all Thoroughly test and reason about your solutions
all Test your submission using your own test data
all Remove any definition of main from your
submission
all Run check submission.sh and make sure
there are no errors
all Make sure you have added submission.hs,
pushed, and tagged your submission correctly
11
3 An open-ended exercise
The exercise described in this section is designed to be extremely difficult: no
amount of time spent on it is guaranteed to result in gaining marks, and it is
best attempted only if the thinking in itself is sufficient motivation. In particular, it will only be marked if your submission for exercises 1 and 2 receive full
marks. I have told the TAs that they do not need to prepare to support these
exercises, so you may need to ask me directly about any questions you have!
For this exercise, we assume that quadtrees do not record any size information about their cells. If your data structure for Exercises 1 and 2 records size
information, make a different Algebraic Data Type for this exercise which does
not do so, and provide implementations for the four functions from Exericse
1, except that allBlack and allWhite should now take no arguments. Note
that you should do this exercise in a separate file, so that you don’t modify
anything to do with your existing solutions!
This means we can now write infinite quadtrees, such as
let q = clockwise allWhite allBlack allWhite q in q
which form the basis of the exercise.
First, we define a notion of approximation for quadtrees for each natural number
n which we call the n
th coarse work approximation. This is specified by
the following equalities:
• coarsework 0 q == allWhite
• coarsework n allWhite == allWhite
• coarsework n allBlack == allBlack
• coarsework (n+1) (clockwise a b c d)
== clockwise (coarsework n a)
(coarsework n b)
(coarsework n c)
(coarsework n d)
A value q of the quadtree type is called ergodomestic if for all natural numbers
n the expression coarsework n q does not ‘go wrong’ in the sense we have been
using that phrase heretofore.
A function which takes a quadtree as input and outputs a Bool is called a fair
exercise if and only if when given an ergodomestic quadtree, it evaluates to
either True or False in finite time.
Your task is to define a function my_solution which takes as input a function
from quadtrees to Bool and outputs a quadtree, with the property that for all
fair exercises f, my_solution evaluates in finite time to a quadtree (which may
be finite or infinite), and we have
12
• f (my_solution f) == True if there exists a value of the quadtree type
q such that f (q) == True , and
• f (my_solution f) == False if there is no such value.
A correct, well-documented solution is worth two marks.
如有需要,請加QQ:99515681 或WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:代寫CS9053、代做Java語言編程
  • 下一篇:代發EI論文 EI論文轉證 EI源刊助發
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 wps 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品高潮在线| 蜜臀久久99精品久久久酒店新书| 久久人人爽人人爽爽久久| 国产成人av网| 91精品国产沙发| 91麻豆精品秘密入口| 成人久久精品视频| av免费观看网| 91精品国产99| 国产av熟女一区二区三区| 国产激情久久久| 久草热视频在线观看| 色婷婷av一区二区三区在线观看| 久久久久这里只有精品| 久久久久久久久网| 国产精品视频999| 久久亚洲电影天堂| 在线观看国产一区| 午夜啪啪免费视频| 日日夜夜精品网站| 欧美亚洲国产成人| 国产一区二区在线观看免费播放| 国产人妻777人伦精品hd| 97精品一区二区三区| 国产成人精品久久二区二区| 国产精品日韩久久久久| 国产99久久精品一区二区| 亚洲国产一区二区三区在线播| 日本精品久久久久久久久久| 国内成人精品一区| 99热亚洲精品| 久久久久久欧美| 精品免费国产| 午夜精品一区二区三区av| 日韩wuma| 国内一区二区三区在线视频| 91久久中文字幕| 国产精品露脸av在线| 亚洲欧洲精品一区二区| 欧美专区在线视频| 国产日本在线播放| 国产成人高清激情视频在线观看| 国产精品久久久久av免费| 亚洲三区视频| 激情久久av| 成人av影视在线| 日韩中文字幕网址| 亚洲午夜精品久久久久久人妖| 日韩视频在线免费播放| 国产免费一区视频观看免费| 久久综合给合久久狠狠色| 国产精品久久久久久久久久三级 | 欧美日韩一区二区三区免费 | 欧美日韩成人在线观看| 日本一欧美一欧美一亚洲视频| 国产欧美日韩精品丝袜高跟鞋 | 青青草一区二区| 97久久超碰福利国产精品…| 国产精品视频26uuu| 天堂√在线观看一区二区| 国产专区精品视频| 日韩在线精品视频| 午夜精品视频在线| 国产精品亚洲αv天堂无码| 久久夜色精品国产| 欧美日韩国产三区| 国产二区不卡| 午夜美女久久久久爽久久| 成人av在线亚洲| 国产精品九九九| 欧美亚洲第一区| 久久久久久人妻一区二区三区| 午夜午夜精品一区二区三区文| 成人国产精品日本在线| 精品国产成人av在线免| 欧美日韩亚洲一区二区三区四区| 久久青青草原| 亚洲欧洲精品在线| 逼特逼视频在线| 又粗又黑又大的吊av| 国产精品亚洲αv天堂无码| 欧美激情xxxx性bbbb| 国产日韩三区| 欧美日韩高清区| 国产资源在线免费观看| 精品卡一卡二| 国产欧美123| 欧美成人午夜剧场免费观看| 精品91一区二区三区| 国产精品啪啪啪视频| 黄色片久久久久| 国产精品久久久久久久久影视| 免费不卡av在线| 久热精品视频在线观看一区| 国产欧美日韩在线播放| 欧美激情视频网站| www.日本少妇| 亚洲一区二区免费| 久久免费一区| 日韩av日韩在线观看| www.日本久久久久com.| 免费不卡av在线| 宅男av一区二区三区| 91久久久亚洲精品| 日韩wuma| 国产精品久久久久久搜索| 国产亚洲欧美另类一区二区三区| 九九热精品视频国产| 99精品国产高清一区二区| 日本精品一区二区三区不卡无字幕 | 国产伦精品一区二区三区| 欧美人与性动交a欧美精品| 99在线影院| 日本精品在线视频| 国产精品久久久久久久久久东京| 国精产品99永久一区一区| 欧美日韩福利在线观看| 白嫩少妇丰满一区二区| 日本午夜人人精品| 久久精品一偷一偷国产| 国产欧亚日韩视频| 亚洲电影一二三区| 日韩在线高清视频| 国产一二三区在线播放| 午夜欧美性电影| 国产精品日本一区二区| av在线com| 青青青国产在线视频| 欧美日本高清一区| 国产超级av在线| 国内精品400部情侣激情| 亚洲最大福利视频网站| 色婷婷av一区二区三区久久| 国产日韩欧美精品在线观看| 亚洲综合在线小说| 九一国产精品视频| 国产日韩综合一区二区性色av| 亚洲 中文字幕 日韩 无码| 久久精品成人欧美大片| 国产精品一区二区三区不卡 | 韩国日本不卡在线| 日本在线观看一区二区| 久久国产精彩视频| 色妞久久福利网| 97精品国产97久久久久久粉红| 欧美日韩黄色一级片| 丁香色欲久久久久久综合网| 国产精品免费一区二区三区观看| 99精彩视频| 国产视频999| 青青在线视频免费| 天堂av一区二区| 亚洲在线www| 欧美成人精品在线观看| 久久精彩免费视频| 久久这里只有精品23| 国产精品又粗又长| 国产综合动作在线观看| 欧美亚洲激情视频| 日本三日本三级少妇三级66| 亚洲自拍小视频| 久国内精品在线| 久久深夜福利免费观看| 国产激情在线观看视频| 成人精品一区二区三区电影黑人| 麻豆av一区二区| 免费在线国产精品| 欧洲一区二区在线| 日本一区二区在线视频| 亚洲精品中文字幕在线| 欧美激情网站在线观看| 国产精品高清一区二区三区| 国产精品丝袜一区二区三区| 日韩中文娱乐网| 精品国产一区av| 色婷婷久久一区二区| 久久久久久中文字幕| 7777免费精品视频| 91免费在线观看网站| 高清无码视频直接看| 国产欧美日韩精品在线观看| 国产在线观看不卡| 国产又粗又猛又爽又黄的网站| 欧美日韩一区二| 欧美成人一区二区在线| 欧美 日韩 亚洲 一区| 欧美性大战久久久久| 日韩久久在线| 人妻无码视频一区二区三区| 日韩精品视频在线观看视频| 日韩精品最新在线观看| 青青视频免费在线| 欧美亚洲午夜视频在线观看| 人妻内射一区二区在线视频| 欧美一区二区中文字幕| 欧在线一二三四区| 国模视频一区二区三区| 国产日韩在线看片| 逼特逼视频在线| 国产成人综合久久|