99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

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

代做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++編程語言
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

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

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

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          免费不卡中文字幕视频| 久久婷婷国产综合精品青草 | 亚洲国产91| 欧美日韩视频在线| 久久久久久久999| 亚洲精品自在久久| 今天的高清视频免费播放成人 | 亚洲福利视频一区| 国产精品免费aⅴ片在线观看| 欧美怡红院视频| 亚洲麻豆视频| 黄色成人av在线| 国产精品久久久久影院色老大| 免费观看亚洲视频大全| a91a精品视频在线观看| 亚洲国产99精品国自产| 国产一区二区三区四区| 欧美丝袜一区二区三区| 欧美大色视频| 欧美xart系列高清| 欧美3dxxxxhd| 欧美ed2k| 欧美国产免费| 欧美国产日韩一区二区在线观看| 久久另类ts人妖一区二区| 欧美在线免费看| 久久精品123| 久久九九久精品国产免费直播| 亚洲欧美清纯在线制服| 亚洲欧美日韩精品久久奇米色影视| 亚洲人永久免费| 亚洲免费高清| 一区二区三区成人| 亚洲四色影视在线观看| 亚洲一区在线看| 午夜精品www| 久久高清一区| 免费试看一区| 欧美吻胸吃奶大尺度电影| 欧美成人激情在线| 久久影院午夜片一区| 久久亚洲一区二区| 欧美二区不卡| 欧美午夜不卡视频| 国产精品人人做人人爽人人添| 国产精品丝袜xxxxxxx| 国产亚洲精品一区二555| 国产一在线精品一区在线观看| 国内精品视频一区| 亚洲日本一区二区| 亚洲视频电影图片偷拍一区| 亚洲欧美一区二区三区极速播放 | 国产日韩综合| 亚洲成色777777女色窝| 日韩一区二区精品葵司在线| 亚洲欧美日韩综合| 美女脱光内衣内裤视频久久影院 | 制服诱惑一区二区| 欧美一区二区免费视频| 麻豆成人综合网| 欧美日本韩国在线| 国产日韩欧美不卡在线| 亚洲精品在线免费观看视频| 亚洲欧美中文字幕| 欧美jjzz| 国产一区二区三区在线免费观看| 亚洲激情第一区| 欧美在线地址| 欧美四级在线| 亚洲黄色性网站| 欧美一级午夜免费电影| 欧美日本在线播放| 精品999在线观看| 亚洲欧美经典视频| 欧美精品日韩精品| 激情欧美一区二区三区| 亚洲主播在线观看| 欧美激情视频网站| 尤物99国产成人精品视频| 国产精品99久久99久久久二8 | 激情成人av| 亚洲欧洲99久久| 国产精品v日韩精品| 亚洲欧洲综合另类| 久久综合中文色婷婷| 国产精品香蕉在线观看| 亚洲乱码国产乱码精品精天堂 | 久久久久久国产精品一区| 国产精品二区三区四区| 亚洲久久一区| 男女视频一区二区| 亚洲国产精品久久久久秋霞不卡| 久久大综合网| 狠狠色狠狠色综合日日五| 欧美亚洲综合在线| 国产无一区二区| 欧美一级片一区| 国产亚洲精品aa午夜观看| 亚洲综合欧美| 国产精品欧美经典| 午夜精品免费在线| 国产日韩精品电影| 欧美一区二区三区免费看| 国产精品推荐精品| 欧美伊人久久久久久午夜久久久久 | 在线观看日韩| 欧美黄色成人网| 亚洲精品一区二区三区福利| 欧美日本不卡视频| 亚洲欧美变态国产另类| 国产性天天综合网| 狂野欧美激情性xxxx| 亚洲国产精品久久久久婷婷884| 亚洲一区在线播放| 国产欧美一区二区精品仙草咪| 亚洲免费综合| 国产亚洲欧美日韩美女| 可以免费看不卡的av网站| 亚洲精品社区| 欧美三级资源在线| 欧美在线视频一区二区| 亚洲国产成人久久综合一区| 欧美另类变人与禽xxxxx| 亚洲一区在线免费| 国产一区二区精品丝袜| 久久综合狠狠综合久久激情| 99ri日韩精品视频| 国产日韩在线亚洲字幕中文| 久久久久久久97| 日韩写真视频在线观看| 国产亚洲欧美日韩在线一区| 欧美1区3d| 欧美一级久久久| 亚洲国产影院| 国产视频精品xxxx| 欧美日韩高清免费| 久久免费视频一区| 亚洲欧美国产日韩天堂区| 一区二区三区在线看| 欧美午夜理伦三级在线观看| 久久综合一区二区| 亚洲欧美国产不卡| 99re6这里只有精品视频在线观看 99re6这里只有精品 | 91久久精品一区二区三区| 国产精品毛片a∨一区二区三区|国 | 亚洲国产一区二区a毛片| 国产精品入口| 欧美人妖在线观看| 欧美 日韩 国产 一区| 欧美一级二区| 亚洲视频一二区| 99av国产精品欲麻豆| 亚洲高清不卡av| 国产一二精品视频| 国产精品美女久久久| 欧美精品久久久久久久| 久热精品视频| 久久伊人一区二区| 久久久久久久999| 香蕉久久一区二区不卡无毒影院| 一区二区三区 在线观看视频| 亚洲日本成人在线观看| 在线观看欧美日韩| 国内伊人久久久久久网站视频 | 国产欧美一区二区三区久久| 欧美日韩情趣电影| 欧美日韩在线一二三| 欧美精品播放| 欧美日韩高清区| 欧美午夜视频一区二区| 国产精品久久九九| 国产精品黄视频| 国产女主播一区二区三区| 国产区欧美区日韩区| 国产一区久久久| 在线不卡a资源高清| 亚洲福利视频在线| 亚洲理论电影网| 中日韩美女免费视频网站在线观看| 亚洲毛片av| 亚洲一区二区成人在线观看| 亚洲一区二区三区视频播放| 午夜精品视频在线观看| 久久国产精品久久久久久久久久| 欧美一区国产一区| 另类欧美日韩国产在线| 欧美人交a欧美精品| 国产精品亚洲аv天堂网| 国产主播一区二区三区| 亚洲国产99精品国自产| 9人人澡人人爽人人精品| 亚洲欧美一区二区原创| 老司机一区二区三区| 欧美精品一区视频| 国产精一区二区三区| 在线日韩电影| 亚洲图片在线观看| 久久一区二区三区四区| 欧美日本高清一区| 国产精品一二三|