-
Notifications
You must be signed in to change notification settings - Fork 0
/
arrayAndptr.cpp
97 lines (91 loc) · 1.84 KB
/
arrayAndptr.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include "pch.h"
#include <iostream>
#include <stdio.h>
#include <vector>
#include <string>
using namespace std;
//int sum( int(* ptr)[])
//{
// unsigned int len = sizeof(&ptr) / sizeof(int);
// printf("长度%d", len);
// return 0;
//}
//int main()
//{
// int a[4] = { 1,2,3,4 };
// int (*p)[4]= & a;
// sum (p)
//}
//
//int arraySum(int arr[])
//{
//
//
// //unsigned int loop = 0;
// /*循环前计算好长度,提高性能*/
// //unsigned int len = sizeof(arr) / sizeof(int);
// int sum = 0;
// if (NULL == arr)
// {
// return 0;
// }
// for (int *p = arr; *p!=NULL;p++)//可怕
// {
// sum += *p;
// }
// return sum;
//}
class zigstr {
/*The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this:
*(you may want to display this pattern in a fixed font for better legibility)
*
* P A H N
* A P L S I I G
* Y I R
*
* And then read line by line : "PAHNAPLSIIGYIR"
*
* Write the code that will take a string and make this conversion given a number of rows :
*
* string convert(string text, int nRows);
*
* convert("PAYPALISHIRING", 3) should return "PAHNAPLSIIGYIR".*/
public:
string zstr;
int zrows;
zigstr(string s,int rows):zstr(s),zrows(rows) {
}
string convert()
{
//exceptional input
if (zrows <= 1 || zstr.size() < zrows)
return zstr;
vector<string> r(zrows);
int row = 0;
int step = 1; //bool不可
for (int i = 0; i < zstr.size();i++)
{
if (row == zrows - 1)
step = -1;
if (row == 0)
step = 1;
r[row] += zstr[i];
row += step;
}
string result;
for (int j = 0;j < zrows;j++)
result += r[j];
return result;
}
};
int main(void)
{
//int a[] = { 1,2,3,4,5,6 };
//int sum = arraySum(a);
//printf("arr sum is %d", sum);
//return 0;
string s = "PAYPALISHIRING";
zigstr a(s, 3);
cout<<s<<':'<<a.convert()<<endl;
return 0;
}