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

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

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

時間:2024-03-18  來源:合肥網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++編程語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業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怎么修改定
  • 短信驗證碼 豆包網頁版入口 破天一劍 目錄網 排行網

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    成人在线一区二区| 国产精品视频一区二区三区经| 夜夜添无码一区二区三区| 久久国产色av| 中文字幕乱码人妻综合二区三区| 欧美激情中文网| 日韩在线第一区| 性色av一区二区三区在线观看| 日本在线观看不卡| 欧美日韩无遮挡| 免费观看美女裸体网站| 国产一区二区三区在线免费| 国产乱码精品一区二区三区日韩精品 | 欧美日韩成人黄色| 国产综合中文字幕| av中文字幕av| 日韩在线视频播放| 久久久成人的性感天堂| 九色91av视频| 国产日韩精品电影| 不用播放器成人网| 亚洲一区二区中文字幕| 色综合久久久久无码专区| 99www免费人成精品| 久久久久久久久久伊人| 国产精品福利久久久| 亚洲一区二区在线看| 超碰网在线观看| 亚洲乱码中文字幕久久孕妇黑人| 欧美牲交a欧美牲交aⅴ免费下载| 日韩色av导航| 亚洲日本精品国产第一区| www日韩在线观看| 亚洲xxxx视频| 久久久久久久久久久人体| 欧美中日韩在线| 国产精品aaa| 日日狠狠久久偷偷四色综合免费| 青青青免费在线| 国产精品久久久精品| 少妇人妻在线视频| 久久riav| 亚洲伊人久久综合| 国产精品18久久久久久首页狼| 欧美大肥婆大肥bbbbb| 国产免费色视频| 国产精品我不卡| 国产日韩在线一区| 亚洲三区四区| 久久精品久久久久久| 国产区亚洲区欧美区| 亚洲第一页在线视频| 国产suv精品一区二区三区88区| 欧美性猛交久久久乱大交小说| 精品国产综合| 久久亚洲免费| 免费毛片一区二区三区久久久| 欧美精品久久久久久久免费观看| 久久久综合亚洲91久久98| 欧美激情第1页| 91老司机精品视频| 欧美久久电影| 色婷婷综合久久久久| 国产综合第一页| 日韩av大片在线| 九九久久精品一区| 久久精品日产第一区二区三区乱码| 欧美一级大片在线观看| 欧美精品www在线观看| 久久久久高清| 国产一区二区三区播放| 午夜精品一区二区在线观看的| 久久久国产精品一区| av动漫在线观看| 欧美精品久久久久久久自慰| 亚洲一卡二卡三卡| 国产精品视频区1| 久久久亚洲福利精品午夜| 国产一区玩具在线观看| 日韩午夜视频在线观看| 国产福利久久| 美国av一区二区三区| 性欧美精品一区二区三区在线播放| 国产精品久久久久久久9999| 久久久日本电影| 国产精品一区二区欧美| 免费在线观看亚洲视频| 国产精品久在线观看| 久久这里只有精品18| 国产另类第一区| 男人天堂av片| 日本成人在线不卡| 亚洲综合欧美日韩| 久久躁狠狠躁夜夜爽| 色av中文字幕一区| 久久综合福利| 99re在线视频上| 国产欧美亚洲精品| 狠狠色综合网站久久久久久久| 日本欧美黄网站| 亚洲免费av网| 亚洲影院污污.| 中文字幕色一区二区| 国产精品久久久久久久久久ktv| 久久久久久久久久久久久国产精品| 国产男女激情视频| 国产综合久久久久| 蜜臀av.com| 激情视频一区二区| 欧美性猛交久久久乱大交小说| 日本精品福利视频| 日本在线高清视频一区| 亚洲 欧洲 日韩| 一区二区传媒有限公司| 中文字幕久久一区| 欧美激情国产日韩精品一区18| 国产99视频精品免费视频36| 精品国产三级a∨在线| 国产精品海角社区在线观看| 国产精品免费入口| 国产精品久久久久久久久久东京| 久久精品国产视频| 国产精品免费在线| 国产精品久久久久久久7电影 | 国产精品美女www爽爽爽视频| 日韩在线观看免费高清| 日韩有码片在线观看| www.日韩免费| 国产精品激情自拍| 精品国产乱码久久久久久郑州公司| 久久夜色撩人精品| 欧美激情中文网| 亚州国产精品久久久| 日本一级黄视频| 欧美在线一区二区三区四区| 黄色a级片免费看| 国产毛片视频网站| 91麻豆桃色免费看| 久久久久久久久久久久久久国产| 久久久久久久久久久视频| 久久精品中文字幕免费mv| 国产精品久久久久久久久久久久午夜片 | 久久国产精品久久精品| 色综合久久88色综合天天看泰| 一区二区三区三区在线| 性色av一区二区三区在线观看| 日韩欧美视频免费在线观看| 欧美日韩国产二区| 色综合色综合网色综合| 午夜美女久久久久爽久久| 欧美做受高潮1| 国产日产久久高清欧美一区| 91精品久久久久久久久久久久久| 国语对白做受xxxxx在线中国| 国内精品久久久| 成人久久18免费网站漫画| 久久男人的天堂| 国产精品入口免费视频一| 欧美日韩电影在线观看| 日韩一区国产在线观看| 日韩精品大片| 国产美女在线一区| 久久精品一区二区三区不卡免费视频| 久久精品aaaaaa毛片| 国产精品美女免费看| 亚洲成人第一| 免费国产成人看片在线| 国产精品av网站| 国产精品高潮呻吟久久av无限| 亚洲欧美精品| 精品日本一区二区三区| 97国产精品久久| 国产精品视频免费在线| 亚洲精品女av网站| 欧美连裤袜在线视频| 国产精品亚洲美女av网站| 日韩有码片在线观看| 一区二区精品国产| 青青草一区二区| 99热在线这里只有精品| 久久久精品欧美| 性视频1819p久久| 国产日韩欧美91| 久久精品2019中文字幕| 亚洲乱码中文字幕久久孕妇黑人| 极品日韩久久| 久久精品人人做人人爽电影| 中文字幕人成一区| 女同一区二区| 久久亚洲综合网| 中文字幕在线亚洲三区| 蜜桃久久精品乱码一区二区| 九一国产精品视频| 一区二区三区四区不卡| 欧美xxxx黑人又粗又长密月| 国产福利视频在线播放 | 免费不卡av在线| 久久久久久久久久久福利| 亚洲高清视频一区| 国产免费一区二区三区在线能观看|