Leetcode practice
0.0
Public Member Functions
|
List of all members
Array_Static Class Reference
#include <
array_static.h
>
Public Member Functions
void
sort_array
()
Sort array.
More...
void
print_array
()
Print array.
More...
Member Function Documentation
◆
print_array()
void Array_Static::print_array
(
)
Print array.
29
{
30
for
(
int
&item: a1)
31
cout <<
""
<< item;
32
cout << endl;
33
}
◆
sort_array()
void Array_Static::sort_array
(
)
Sort array.
39
{
40
sort(a1, a1 + size);
//sort(first, last)
41
}
The documentation for this class was generated from the following files:
array/
array_static.h
array/
array_static.cpp
Generated by
1.8.15