HPE 815101-B21 64GB Quad Rank DDR4-2666 CL19 ECC Reg DDR4 SDRAM Memory
Wednesday, April 1, 2020
HPE 815101-B21 64GB Quad Rank DDR4-2666 CL19 ECC Reg DDR4 SDRAM Memory
Posted by
Kamrul Hasan
at
3:02 AM
0
comments
Thursday, October 3, 2019
Magento 1.x.x Theme (Free Download)
Overview
Computer Store template is a responsive Magento template which was created specifically for computer storage and parts eCommerce store. The Computer Store template helps ease the burden of the installation and application of itself significantly.Responsive Design
1. Compatible with all major browsers2. Work perfectly with all smartphone devices
3. Easy to customize and upgrade
4. Follow Magento template coding standard
5. 100% open source
Promote featured products in home page: The template is integrated with Featured Products extension allows admin to select products to promote in home page. Featured products are displayed as a slider in home page
Easily integrate with Magento Shop by Brands module: Allow admin to promote product brands by a static block in home page
I hope, you'll love it!
Download from here
Posted by
Kamrul Hasan
at
9:36 PM
0
comments
Wednesday, July 10, 2019
Sunday, October 31, 2010
Monday, March 31, 2008
Thursday, January 24, 2008
Modified Merge Sort
INIT (n)
n = 1
MERGE-SORT (A, n, p, r)
MERGE-SORT (A, n, p, r)
if p<r
then n = n*2
MERGE (A, n, p, r)
MERGE-SORT (A, n, p, r)
MERGE (A, n, p, r)
create arrays L[1..n+1] and R[1..n+1]
for i = 1 to n
do L[i] = A[p+i-1]
for j = 1 to n
do R[i] = A[p+n+j-1]
L[n+1] = ∞
R[n+1] = ∞
i = 1
j = 1
for k = p to r
do if L[i] ≤ R[j]
then A[k] = L[i]
i = i+1
else A[k] = R[j]
Posted by
Kamrul Hasan
at
11:26 AM
0
comments
Labels: A Modification of Merge Sort., Data Sorting Alogorithm
Subscribe to:
Comments (Atom)








