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

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代做COMP2013、代寫 c++/java,Python 編程

時間:2024-03-18  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



COMP2013 Data Structures and Algorithms
Programming Assignment 1 Deadline: 10:00am, 25th March, 2024
Instructions
 Submit the soft-copy of your program to Learn@PolyU
 You can only submit one program file (either C++ or Java or Python),
 and the filename must follow the format below.
   Language
C++
Java Python
Problem
Filename format mainStudentID.cpp mainStudentID.java mainStudentID.py
Filename example
main10987654d.cpp main10987654d.java main10987654d.py
               Section 1:
Input: Output:
An array A[0..n–1] (of comparable elements)
The total number of pairs (i, j) such that i < j and A[i] > A[j].
 In this problem, the input can be an array of integers or an array of strings.
(1.1) Comparisonforstrings
We use the lexicographical order to compare strings. Let s[x] denote the x-th letter of the string s.
Given two strings s[0..sL–1] and r[0..rL–1], s>r holdsif
• risaprefixofs(i.e.,rL<sLand∀p=0..rL-1s[p]=r[p]) OR • there exists a position k such that s[k]>r[k] and ∀p=0..k-1 s[p]=r[p]
 Examples:
• charge > balance • balance > bal
• bbbbbb > bbbbba
(1.2) Examplesfortheproblem Input
Output Explanation
5 5 pairs satisfy the requirement:
(0,1), (2,3), (2,5), (3,5), (4,5).
5 5 pairs satisfy the requirement: (0,1), (2,3), (2,5), (3,5), (4,5).
         Example for an array of integers Example for an array of strings
A[0..6] =
| 31 | 24 | 85 | 76 | 93 | 50 | 93 |
A[0..6] =
| “charge” | “balance” | “wind” | “thunder” | “zoo” | “mile” | “zoo” |
        p. 1

Section 2: Input and Output Format
 Here are samples of the input file and the output of your program.
Sample input file “file1.txt” The output on screen (stdout)
     integer
7
31
24
85 76 93 50 93
   5
   Sample input file “file2.txt” The output on screen (stdout)
   string
7
charge
balance
wind
thunder
zoo
mile
zoo
   5
 The format of the input file is as follows:
 the 1st line shows the type (either integer or string),  the 2nd line shows the number of elements,
 each subsequent line shows an element.
The number of elements is in the range 1.. 10000000.
For integers, the elements are in the range 1..10000000.
For strings, the elements have length at most 20 and contain lower-case letters only.
We will run your program by a command line like:
  Language
C++ (after compilation) Java (after compilation) Python
Command line
./mainStudentID input123.txt
java mainStudentID input123.txt python mainStudentID.py input123.txt
           where the argument “input123.txt” is an example of the input filename. Your program should only output the result number.
Please follow the above output format and DO NOT print any extra information.
p. 2

Section 3: Hints
 (3.1) Comparisonsforstrings
You are allowed to use operator or standard library function (e.g., in C++, Java, Python) to perform lexicographic comparison for string. Examples:
• C++: https://cplusplus.com/reference/string/string/compare/
• Java: https://docs.oracle.com/javase/tutorial/java/data/comparestrings.html
• Python: https://docs.python.org/3/library/stdtypes.html#comparisons Please test them before using them in your program.
(3.2) Hintsforprogramming
• Use a large enough integer type (e.g., long) to prevent “integer overflow” in counting.
• A simple program is to use nested for-loops. Its time complexity is O(n2). It is acceptable for
small input file but too slow for large input file.
• If you wish to obtain higher marks, try to use the “divide-and-conquer” approach in your
program. It is possible to achieve the time complexity O(n log n) time.
• Some programming tricks can be used to speedup your program by a constant factor.
     p. 3

Section 4: Grading Criteria
 (4.1) Namingconventions,compilationandexecutioncommands
  Before submission, rename your program to mainStudentID.cpp,
OR mainStudentID.java, OR mainStudentID.py,
e.g., main10987654d.cpp e.g., main10987654d.java e.g., main10987654d.py
    [C++ and Java only] Make sure that you can compile your program using the command: g++ mainStudentID.cpp -o mainStudentID
OR javac mainStudentID.java
o No marks will be given if your program cannot be compiled.
 We will run your program by a command line like: ./mainStudentID input123.txt
OR java mainStudentID input123.txt
OR python mainStudentID.py input123.txt where the argument “input123.txt” is an example of the input filename.
Make sure that you can execute the above commands on the COMP apollo server successfully. Otherwise, no marks will be given. The current versions on apollo are as follows:
g++ (GCC) 4.8.5, javac 1.8.0_20, Python 2.7.5
(4.2) Testfilesforgrading
Total marks: 100%
Your program will be graded by using 10 test files.
• 5 test files for integers
• 5 test files for strings
The running time of your program will be measured on the COMP apollo server.
For each test file,
if your program can produce the correct output within 1 minute, then you get +10 marks.
       p. 4

Appendix
 (1) How to activate your COMP account?
Please click the following link to activate your COMP account:
 https://acct.comp.polyu.edu.hk/ https://acct.comp.polyu.edu.hk/files/COMPStudentAccountSelfActivation.pdf
(2) How to login the COMP apollo server?
 according to the instructions in:
     [Step 1]
Use PuTTY (or any SSH client program)
Enter the host name
csdoor.comp.polyu.edu.hk
Click the “Open” button.
If you see the message “The host key is not cached for this server...”,
just accept to continue.
     p. 5

   [Step 2]
Enter your COMP account username and password.
Note that, when you are entering the password, it is not displayed in PuTTY.
       [Step 3]
Enter the hostname apollo
Then enter your COMP account password (the same as in Step 2).
      [Step 4]
Use WinSCP (or any SFTP client program).
Enter the host name csdoor.comp.polyu.edu.hk Enter your COMP account username and password. Upload your program to the server.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:COMP9315 代做、SQL 語言編程代寫
  • 下一篇:代做RISC-V、代寫 C++編程語言
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品久久久久久久久久尿| 国产精品一区在线免费观看| 日韩久久久久久久久久久久久| 精品无码一区二区三区爱欲| 国产盗摄视频在线观看| 久久国产精品网站| 亚州精品天堂中文字幕| 国产一区二区三区黄| 久久精品人成| 欧美成人精品一区| 欧美精品久久96人妻无码| 国产精品91久久久| 一本大道熟女人妻中文字幕在线| 欧洲日韩成人av| 91老司机精品视频| 欧美日韩xxx| 午夜免费久久久久| 国产精品一区二区三区在线观| 国产精品入口免费| 午夜免费日韩视频| 成人免费观看cn| 精品福利影视| 国产综合精品一区二区三区| 久久久久久尹人网香蕉| 亚洲精品欧美一区二区三区| 国产欧美精品久久久| 九九九热999| 日韩一级特黄毛片| 91精品在线国产| 亚洲一区二区不卡视频| 国产青青在线视频| 美日韩精品视频免费看| 成人精品小视频| 亚洲精蜜桃久在线| 久久av免费一区| 欧美日韩dvd| 久久99国产综合精品女同| 99国产在线| 欧美一区二区三区……| 色噜噜狠狠狠综合曰曰曰88av| 欧美激情国产精品日韩| 欧美精品免费看| 91免费黄视频| 日韩免费黄色av| 欧美另类69精品久久久久9999| 成人免费在线小视频| 亚洲精品一卡二卡三卡四卡| 国产福利视频一区| 免费中文日韩| 一本色道久久88亚洲精品综合| 久久综合一区| 黄黄视频在线观看| 欧美激情一区二区三区久久久| 91观看网站| 欧美人成在线观看| 在线一区高清| 丝袜亚洲欧美日韩综合| 国产亚洲精品久久久久久久| 午夜精品一区二区三区在线视| 久久深夜福利免费观看| 成人欧美一区二区三区黑人免费| 亚洲综合av一区| 日韩中文第一页| 国产乱淫av片杨贵妃| 日本成人黄色免费看| 精品久久久久久无码中文野结衣| 久久人人爽国产| 国产三区在线视频| 日本不卡一区二区三区四区| 免费91麻豆精品国产自产在线观看| 久久久人成影片一区二区三区观看| 精品人伦一区二区三区| 亚洲va韩国va欧美va精四季| 国产精品久久久久久av福利| 久久久免费看| 国产美女高潮久久白浆| 日韩aⅴ视频一区二区三区| 欧美巨大黑人极品精男| 日日骚久久av| 91精品啪在线观看麻豆免费| 精品少妇一区二区三区在线| 日本一区二区三区视频免费看 | 精品国产一区二区三区久久| 不卡中文字幕在线| 精品日本一区二区| 日本一区美女| 亚洲色精品三区二区一区| 国产精品国产亚洲精品看不卡 | 欧美亚洲在线观看| 亚洲 欧洲 日韩| 米奇精品一区二区三区在线观看| 久久精品五月婷婷| 国产情人节一区| 欧美日韩亚洲在线| 日本一区二区在线视频观看| 中文字幕日韩精品久久| 国产精品二区在线| 国产成人免费观看| 久久精品欧美| 91九色国产社区在线观看| 国产欧美日韩一区| 国内精品久久久久久久果冻传媒| 青青草视频在线视频| 日本免费不卡一区二区| 亚洲成色www久久网站| 国产99久久九九精品无码| 欧美xxxx综合视频| 国产精品久久久久久久乖乖| 国产成人无码一二三区视频| 久久99中文字幕| 国产成人成网站在线播放青青| 久久久在线视频| 国产精品91免费在线| 国产精品999视频| av资源一区二区| 国产精品一区二区免费在线观看 | www.日韩免费| 精品国内产的精品视频在线观看| 久久精品.com| 精品国产依人香蕉在线精品| 精品国偷自产在线视频| 日韩亚洲成人av在线| 日韩在线www| 色偷偷偷亚洲综合网另类| 日韩一级黄色av| 久久精品夜夜夜夜夜久久| 久久久国产一区二区| 久久精品国产欧美激情| 色噜噜狠狠狠综合曰曰曰88av| 久久av一区二区三区漫画| 久久久免费av| 精品国产一区二区三区久久| 久久久999成人| 久久艳片www.17c.com| 久久福利视频导航| 久久99久久久久久久噜噜| 久久久久国产精品免费| 中文字幕日韩精品一区二区| 亚洲一区二区三区精品在线观看| 亚洲a一级视频| 日韩精品视频在线观看视频| 黄色免费福利视频| 国产麻豆电影在线观看| av在线播放亚洲| 国产成人aa精品一区在线播放| 久久久久久久91| 国产精品久久久久9999小说| 欧美激情中文字幕乱码免费| 亚洲成人精品电影在线观看| 日韩视频第二页| 美日韩免费视频| 97人人模人人爽人人少妇| 久久精品国产第一区二区三区最新章节 | 欧美精品videofree1080p| 亚洲电影一二三区| 秋霞久久久久久一区二区| 欧美亚洲黄色片| 国产欧美自拍视频| 国产精国产精品| 久久综合伊人77777蜜臀| 九色精品免费永久在线| 午夜精品蜜臀一区二区三区免费| 青青草视频国产| 国产女人水真多18毛片18精品| 69av视频在线播放| 国产精品久久久久久久久久久久| 亚洲色图自拍| 国内自拍中文字幕| 91久久嫩草影院一区二区| 国产成人女人毛片视频在线| 一区二区三区在线观看www| 色乱码一区二区三在线看| 精品91一区二区三区| 91九色国产ts另类人妖| 国产精品日韩久久久久| 一区二区三区观看| 三年中国中文在线观看免费播放 | 久久久久久有精品国产| 国产精品久久久999| 日本一区二区三区四区在线观看 | 国产成人精品一区二区| 亚洲专区中文字幕| 黄色片网址在线观看| 99免费视频观看| 国产精品久久婷婷六月丁香| 日韩av电影中文字幕| 国产精品一区二区三区免费观看 | 日本一区二区三区四区视频| 国产免费一区二区| 日韩在线不卡视频| 亚洲精品久久久久久一区二区 | 色视频www在线播放国产成人| 中文字幕在线中文字幕日亚韩一区 | 久久久久久久免费| 久久久久成人精品| 黄色一级片黄色| 久久99精品久久久久久久青青日本| 精品国产免费久久久久久尖叫 | 国产成人无码av在线播放dvd| 天天操天天干天天玩|