Search found 1 match
- Tue Mar 19, 2013 3:47 pm
- Forum: Volume 101 (10100-10199)
- Topic: 10152 - ShellSort
- Replies: 33
- Views: 14756
Re: 10152 - ShellSort
#include <iostream>
#include <cstdio>
#include <vector>
#include <map>
using namespace std;
int main ()
{
int testCase;
cin >> testCase; // Input the number of test cases
vector <string> output; // This vector stores the output
while ( testCase-- ) {
output.push_back (" ");
int turtle ...