diff --git a/test0510.c b/test0510.c index a0bc12b9005087e967552b5b3fa91c94c06fc255..6286c202888eb86f9777a15e82ceb850af5af5f9 100644 --- a/test0510.c +++ b/test0510.c @@ -16,4 +16,8 @@ int Partition(int A[],int left, int right) A[left] = temp; //把temp放到right与left相遇的地方 return left; //返回相遇下标 +} +int Partitiont(int A[],int left, int right) +{ + int temp =A[left]; //存放到临时变量temp } \ No newline at end of file