From 501cb876a373d19601479b52c77de220408f3d95 Mon Sep 17 00:00:00 2001 From: weitengfei Date: Sun, 14 May 2023 02:23:58 +0000 Subject: [PATCH] update test0510.c. Signed-off-by: weitengfei --- test0510.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test0510.c b/test0510.c index a0bc12b..6286c20 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 -- Gitee