Skip to content

Commit 8583d6f

Browse files
committed
update
1 parent e8038e7 commit 8583d6f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

Diff for: Example/bissearch/main.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// MasteringAlgorithms
44
// Description: Illustrates searching algorithms (see Chapter 12).
55
//
6-
// Created by YourtionGuo on 10/05/2017.
6+
// Created by YourtionGuo on 11/05/2017.
77
// Copyright © 2017 Yourtion. All rights reserved.
88
//
99

Diff for: source/bisearch.c

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
#include "search.h"
1313

14+
#pragma mark - Public
1415

1516
int bisearch(void *sorted, const void *target, int size, int esize,
1617
int(*compare)(const void *key1, const void *key2))

Diff for: source/rxsort.c

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
#include "sort.h"
1515

16+
#pragma mark - Public
17+
1618
int rxsort(int *data, int size, int p, int k)
1719
{
1820
int *counts, *temp;

0 commit comments

Comments
 (0)