summaryrefslogtreecommitdiff
path: root/progs/a686.py
diff options
context:
space:
mode:
Diffstat (limited to 'progs/a686.py')
-rw-r--r--progs/a686.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/progs/a686.py b/progs/a686.py
new file mode 100644
index 0000000..960f706
--- /dev/null
+++ b/progs/a686.py
@@ -0,0 +1,22 @@
+def right_rotate(arr, n, out_of_place, cur):
+ temp = arr[cur]
+ for i in range(cur, out_of_place, -1):
+ arr[i] = arr[i - 1]
+ arr[out_of_place] = temp
+ return arr
+def re_arrange(arr, n):
+ out_of_place = -1
+ for index in range(n):
+ if (out_of_place >= 0):
+ if ((arr[index] >= 0 and arr[out_of_place] < 0) or
+ (arr[index] < 0 and arr[out_of_place] >= 0)):
+ arr = right_rotate(arr, n, out_of_place, index)
+ if (index-out_of_place > 2):
+ out_of_place += 2
+ else:
+ out_of_place = - 1
+ if (out_of_place == -1):
+ if ((arr[index] >= 0 and index % 2 == 0) or
+ (arr[index] < 0 and index % 2 == 1)):
+ out_of_place = index
+ return arr \ No newline at end of file