日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

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

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

    合肥圖文信息
    2025年10月份更新拼多多改銷助手小象助手多多出評軟件
    2025年10月份更新拼多多改銷助手小象助手多
    有限元分析 CAE仿真分析服務-企業/產品研發/客戶要求/設計優化
    有限元分析 CAE仿真分析服務-企業/產品研發
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
  • 短信驗證碼 trae 豆包網頁版入口 目錄網 排行網

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

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

    日韩精品一区二区三区高清_久久国产热这里只有精品8_天天做爽夜夜做爽_一本岛在免费一二三区

      <em id="rw4ev"></em>

        <tr id="rw4ev"></tr>

        <nav id="rw4ev"></nav>
        <strike id="rw4ev"><pre id="rw4ev"></pre></strike>
        夜夜爽99久久国产综合精品女不卡| 模特精品裸拍一区| 亚洲精品久久| 国产精品久久久| 影音国产精品| 久久久久久久久久久成人| 欧美亚洲一区三区| 国产一区二区三区在线观看视频| 欧美顶级少妇做爰| 99精品99| 久久蜜桃香蕉精品一区二区三区| 欧美aaaaaaaa牛牛影院| 欧美视频精品在线| 国产精品一区二区三区四区| 开心色5月久久精品| aa国产精品| 在线亚洲国产精品网站| 国产精品国产三级国产a| 亚洲国产欧美日韩另类综合| 亚洲天堂av综合网| 黄色资源网久久资源365| 亚洲国产一二三| 亚洲激情网站| 欧美久久在线| 亚洲一区二区三区久久| 国产在线拍揄自揄视频不卡99| 国产最新精品精品你懂的| 久久亚洲春色中文字幕| 国产一区视频在线看| 久久亚洲欧美国产精品乐播| 亚洲一区免费在线观看| 久久亚洲春色中文字幕| 国产精品日本精品| 久久免费精品日本久久中文字幕| 欧美日韩精品免费看| 欧美连裤袜在线视频| 国产精品久久中文| 亚洲欧洲一级| 好看的日韩视频| 在线观看欧美| 国产精品成人观看视频国产奇米| 欧美国产日本在线| 久久综合久色欧美综合狠狠| 亚洲午夜精品福利| 亚洲视频久久| 欧美日韩美女| 欧美片在线播放| 国产精品久久久久久久久| 国产永久精品大片wwwapp| 久久精品人人爽| 欧美在线视频在线播放完整版免费观看| 一区二区电影免费在线观看| 国产精品欧美一区喷水| 国产欧美日韩专区发布| 亚洲国产另类精品专区| 欧美视频中文字幕在线| 国产又爽又黄的激情精品视频| 欧美精品免费在线观看| 国产欧美日韩综合一区在线观看| 亚洲经典视频在线观看| av成人福利| 国产精品你懂的在线欣赏| 欧美www在线| 国产日韩欧美中文| 欧美在线地址| 亚洲欧美韩国| 欧美中文字幕第一页| 国产精品一区二区在线观看不卡| 日韩视频在线观看一区二区| 国内外成人在线视频| 欧美视频第二页| 国产日韩欧美黄色| 欧美色视频日本高清在线观看| 久久久久中文| 欧美午夜精品一区二区三区| 亚洲欧美国产日韩中文字幕| 亚洲一区二区成人在线观看| 开心色5月久久精品| 欧美日韩国产免费| 99riav国产精品| 欧美激情综合色综合啪啪| 亚洲黄色在线视频| 国产酒店精品激情| 欧美一区二区三区久久精品茉莉花| 亚洲午夜激情网页| 在线视频精品一区| 狠狠综合久久| 久久国内精品自在自线400部| 夜夜嗨av一区二区三区| 国产精品夜夜夜| 亚洲国产精品一区在线观看不卡| 亚洲国产裸拍裸体视频在线观看乱了中文| 欧美日韩精品在线播放| 欧美日韩国产综合一区二区| 在线午夜精品自拍| 久久精品亚洲精品| 欧美视频一区二区三区| 亚洲一区二区精品视频| 国产在线麻豆精品观看| 久久综合一区二区| 欧美成人嫩草网站| 免费日韩成人| 久久国产精品99国产| 亚洲欧美日韩国产| 久久成人免费视频| 亚洲第一福利视频| 最新中文字幕一区二区三区| 欧美在线播放| 欧美成人免费在线视频| 一区二区激情视频| 亚洲国产精品久久久久| 亚洲日本无吗高清不卡| 国产精品久久久久91| 亚洲国产精品久久人人爱蜜臀| 一区二区在线看| 欧美一区二区女人| 欧美人与禽猛交乱配| 欧美日本免费一区二区三区| 欧美成年人视频网站| 亚洲午夜视频在线| 亚洲国产精品久久久久婷婷884| 免费人成精品欧美精品| 欧美午夜视频网站| 国产自产女人91一区在线观看| 久久se精品一区二区| 久久在精品线影院精品国产| 在线成人免费视频| 亚洲欧美在线播放| 国产精品一区二区你懂的| 香蕉久久一区二区不卡无毒影院| 狠狠色丁香久久婷婷综合丁香| 亚洲一区免费网站| 久久超碰97人人做人人爱| 欧美视频一区二区在线观看| 亚洲最快最全在线视频| 在线看一区二区| 日韩视频免费观看高清在线视频| 欧美一区2区三区4区公司二百| 国产精品视频yy9299一区| 国产一区二区三区高清在线观看| 欧美三级网址| 国产精品二区二区三区| 国内精品久久久久久久果冻传媒| 亚洲欧美日韩一区在线观看| 猫咪成人在线观看| 99国产精品99久久久久久| 麻豆精品一区二区综合av| 欧美日韩mp4| 欧美国产日韩一区二区三区| 亚洲免费av片| 性亚洲最疯狂xxxx高清| 欧美电影在线免费观看网站| 久久精品在线视频| 欧美+亚洲+精品+三区| 亚洲欧美日韩爽爽影院| 欧美性大战久久久久久久蜜臀| 欧美极品影院| 久久国产主播精品| 香蕉尹人综合在线观看| av不卡免费看| 亚洲亚洲精品在线观看| 国产自产在线视频一区| 亚洲精品乱码久久久久| 欧美高清在线精品一区|