From 754fcb63e17cb8cb171d1e58ace04e6aa3838d23 Mon Sep 17 00:00:00 2001 From: heqinghqocsh Date: Sat, 8 Aug 2015 12:23:05 +0800 Subject: [PATCH] =?UTF-8?q?Update=201.2=EF=BC=9A=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E4=B8=B2=E6=98=AF=E5=90=A6=E5=8C=85=E5=90=AB=E9=97=AE=E9=A2=98?= =?UTF-8?q?.c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在计数排序的第111行,如果pos++的话,无法完成字符串的计数排序,应该是pos--; --- ...5\220\246\345\214\205\345\220\253\351\227\256\351\242\230.c" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/ebook/code/c/1.2\357\274\232\345\255\227\347\254\246\344\270\262\346\230\257\345\220\246\345\214\205\345\220\253\351\227\256\351\242\230.c" "b/ebook/code/c/1.2\357\274\232\345\255\227\347\254\246\344\270\262\346\230\257\345\220\246\345\214\205\345\220\253\351\227\256\351\242\230.c" index 1937ea058..3bbd11b36 100644 --- "a/ebook/code/c/1.2\357\274\232\345\255\227\347\254\246\344\270\262\346\230\257\345\220\246\345\214\205\345\220\253\351\227\256\351\242\230.c" +++ "b/ebook/code/c/1.2\357\274\232\345\255\227\347\254\246\344\270\262\346\230\257\345\220\246\345\214\205\345\220\253\351\227\256\351\242\230.c" @@ -108,7 +108,7 @@ void countSort(char * oldArr, char * newArr) pos = count[*(oldArr + i) - 'A']; while (newArr[pos - 1] != 0) { - pos++; + pos--;//pos++; } newArr[pos - 1] = *(oldArr + i); }