This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
540bf45
commit 89cba32
Showing
2 changed files
with
117 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,34 @@ | ||
#include <iostream> | ||
#include <iomanip> | ||
#include <cmath> | ||
using namespace std; | ||
|
||
float Tinh(float, int); | ||
|
||
int main() | ||
{ | ||
int n; | ||
float x; | ||
cout << "Nhap x: "; | ||
cin >> x; | ||
cout << "Nhap n: "; | ||
cin >> n; | ||
|
||
cout << "\nKet qua cua S(" << n << ") la: " << setw(5) << Tinh(x, n) << endl; | ||
return 0; | ||
} | ||
|
||
float Tinh(float x, int n) | ||
{ | ||
if (n == 0) | ||
{ | ||
return 0; | ||
} | ||
if (n == 1) | ||
{ | ||
return x; | ||
} | ||
float a = Tinh(x, n - 1); | ||
float b = Tinh(x, n - 2); | ||
return ((1 + x/n) * a - x/n * b); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,96 @@ | ||
#include <iostream> | ||
using namespace std; | ||
#include<stdlib.h> | ||
#include<stdio.h> | ||
|
||
// Gộp hai mảng con arr[l...m] và arr[m+1..r] | ||
void merge(int arr[], int l, int m, int r) | ||
{ | ||
int i, j, k; | ||
int n1 = m - l + 1; | ||
int n2 = r - m; | ||
|
||
/* Tạo các mảng tạm */ | ||
int L[1000], R[1000]; | ||
|
||
/* Copy dữ liệu sang các mảng tạm */ | ||
for (i = 0; i < n1; i++) | ||
L[i] = arr[l + i]; | ||
for (j = 0; j < n2; j++) | ||
R[j] = arr[m + 1 + j]; | ||
|
||
/* Gộp hai mảng tạm vừa rồi vào mảng arr*/ | ||
i = 0; // Khởi tạo chỉ số bắt đầu của mảng con đầu tiên | ||
j = 0; // Khởi tạo chỉ số bắt đầu của mảng con thứ hai | ||
k = l; // IKhởi tạo chỉ số bắt đầu của mảng lưu kết quả | ||
while (i < n1 && j < n2) | ||
{ | ||
if (L[i] <= R[j]) | ||
{ | ||
arr[k] = L[i]; | ||
i++; | ||
} | ||
else | ||
{ | ||
arr[k] = R[j]; | ||
j++; | ||
} | ||
k++; | ||
} | ||
|
||
/* Copy các phần tử còn lại của mảng L vào arr nếu có */ | ||
while (i < n1) | ||
{ | ||
arr[k] = L[i]; | ||
i++; | ||
k++; | ||
} | ||
|
||
/* Copy các phần tử còn lại của mảng R vào arr nếu có */ | ||
while (j < n2) | ||
{ | ||
arr[k] = R[j]; | ||
j++; | ||
k++; | ||
} | ||
} | ||
|
||
/* l là chỉ số trái và r là chỉ số phải của mảng cần được sắp xếp */ | ||
void mergeSort(int arr[], int l, int r) | ||
{ | ||
if (l < r) | ||
{ | ||
// Tương tự (l+r)/2, nhưng cách này tránh tràn số khi l và r lớn | ||
int m = l + (r - l) / 2; | ||
|
||
// Gọi hàm đệ quy tiếp tục chia đôi từng nửa mảng | ||
mergeSort(arr, l, m); | ||
mergeSort(arr, m + 1, r); | ||
|
||
merge(arr, l, m, r); | ||
} | ||
} | ||
|
||
|
||
/* Hàm xuất mảng */ | ||
void printArray(int A[], int size) | ||
{ | ||
int i; | ||
for (i = 0; i < size; i++) | ||
printf("%d ", A[i]); | ||
printf("\n"); | ||
} | ||
|
||
|
||
int main() | ||
{ | ||
int arr[] = { 12, 11, 13, 5, 6, 7 }; | ||
int arr_size = sizeof(arr) / sizeof(arr[0]); | ||
|
||
printf("Given array is \n"); | ||
printArray(arr, arr_size); | ||
|
||
mergeSort(arr, 0, arr_size - 1); | ||
|
||
return 0; | ||
printf("\nSorted array is \n"); | ||
printArray(arr, arr_size); | ||
return 0; | ||
} |