Question
Write a program of a Merge Sort algorithm implemented by the following pseudocode. You should also report the number of comparisons in the Merge function.
……继续阅读 »
站点默认
6年前 (2020-04-11) 4165浏览 34评论
0个赞
Question
Write a program which reads an integer n and draws a Koch curve based on recursive calles of depth n.
The Koch curve is well known as a kind of fractals.
You can draw a Ko……继续阅读 »
站点默认
6年前 (2020-04-11) 8160浏览 0评论
0个赞
Question
Write a program which reads a sequence A of n elements and an integer M, and outputs “yes” if you can make M by adding elements in A, otherwise “no”……继续阅读 »
站点默认
6年前 (2020-04-11) 3903浏览 36评论
1个赞
Question
Sample Input 1
5 3
8
1
7
3
9
Sample Output 1
10
Sample Input 2
4 2
1
2
2
6
Sample Output 2
6
Meaning
Solution
Coding
Summary
……继续阅读 »
站点默认
6年前 (2020-04-09) 9546浏览 7评论
0个赞
Question
Your task is to write a program of a simple dictionary which implements the following instructions:
insert str: insert a string str in to the dictionary
find str: if the d……继续阅读 »
站点默认
6年前 (2020-04-09) 3032浏览 2评论
1个赞
Question
You are given a sequence of n integers S and a sequence of different q integers T. Write a program which outputs C, the number of integers in T which are also in the set S……继续阅读 »
站点默认
6年前 (2020-04-09) 5600浏览 54评论
2个赞
Question
You are given a sequence of n integers S and a sequence of different q integers T. Write a program which outputs C, the number of integers in T which are also in the set S……继续阅读 »
站点默认
6年前 (2020-04-09) 5447浏览 31评论
0个赞
Question
Assume that rain is falling endlessly in the region and the water overflowing from the region is falling in the sea at the both sides. For example, for the above cross-se……继续阅读 »
站点默认
6年前 (2020-04-09) 2739浏览 25评论
0个赞
Question
Stack
Coding
#include<iostream>
#include<stack>
#include<cstdio>
#include<stdlib.h>
using namespace std;
st……继续阅读 »
站点默认
6年前 (2020-04-07) 2451浏览 18评论
0个赞
Question
Your task is to implement a double linked list.
Write a program which performs the following operations:
insert x: insert an element with key x into the front of the list.……继续阅读 »
站点默认
6年前 (2020-04-05) 6100浏览 44评论
2个赞
Question
Time Limit : 1 sec , Memory Limit : 131072 KB , isSolved :
There are n processes in a queue. Each process has namei and timei. The round-robin scheduling handles the proce……继续阅读 »
站点默认
6年前 (2020-04-05) 1849浏览 8评论
0个赞
Question
Reverse Polish notation is a notation where every operator follows all of its operands. For example, an expression (1+2)*(5+4) in the conventional Polish notation can be r……继续阅读 »
站点默认
6年前 (2020-04-04) 1437浏览 2评论
0个赞
Question
1 insertionSort(A, n, g)
2 for i = g to n-1
3 v = A[i]
4 j = i - g
5 while j >= 0 && A[j……继续阅读 »
站点默认
6年前 (2020-04-04) 3838浏览 26评论
0个赞