Skip to content

Commit 47bd124

Browse files
authored
Update make_heap.md
1 parent 67a363e commit 47bd124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

algorithm/make_heap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A heap is a data structure which points to highest( or lowest) element and makin
2121
cout << vi.front() << endl;
2222

2323
//printing the heap
24-
for(i=0;i<vi.size();i++){
24+
for(i=0;i<vi.size();++i){
2525
cout << vi[i] << endl;
2626
}
2727

0 commit comments

Comments
 (0)