rulururu





post Quick-sort Source-Code

November 27th, 2007

Filed under: Algorithms — Unggul_USA @ 2:20 pm — View blog reactions


#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#define NUM_ITEMS 51
void quickSort(int numbers[], int array_size);
void q_sort(int numbers[], int left, int right);
int numbers[NUM_ITEMS];
int counter;
// timestart, timestop;
int main()
{
int i; //seed random number generator
srand(getpid()); //fill array with random integers
//printf(time());
for (i = 0; i < NUM_ITEMS; i++)
numbers[i] = rand();
quickSort(numbers, NUM_ITEMS); //perform quick sort on array
counter=0;
quickSort(numbers, NUM_ITEMS); //perform quick sort on array
for (i = 0; i < NUM_ITEMS; i++)
printf(”%i\n”, numbers[i]);
//timestop = time();
printf(”Done with sort.\n”);
printf(”%i %i\n”, i,counter);
//printf(”%u %u\n”, timestart,timestop);
}
void quickSort(int numbers[], int array_size)
{
q_sort(numbers, 0, array_size - 1);
}
void q_sort(int numbers[], int left, int right)
{
int pivot, l_hold, r_hold;
l_hold = left;
r_hold = right;
pivot = numbers[left];
while (left < right)
{
while ((numbers[right] >= pivot) && (left < right))
right–;
if (left != right)
{
numbers[left] = numbers[right];
left++;
}
counter++;
while ((numbers[left] <= pivot) && (left < right))
left++;
if (left != right)
{
numbers[right] = numbers[left];
right–;
}
counter++;
}
numbers[left] = pivot;
pivot = left;
left = l_hold;
right = r_hold;
if (left < pivot)
q_sort(numbers, left, pivot-1);
if (right > pivot)
q_sort(numbers, pivot+1, right);
}

Inlinks :

(No Ratings Yet)
884 Views

post E-Commerce

November 15th, 2007

Filed under: Internet — Unggul_USA @ 3:37 pm — View blog reactions


E-commerce : suatu cara belanja atau berdagang secara online atau direct selling yang memanfaatkan fasilitas jaringan internet dimana terdapat website yang dapat menyediakan layanan “get & deliver”.

Proses yang ada di dalam E-commerce adalah sebagai berikut :

  • Presentasi elektronis untuk produk dan jasa yang dijual/ditawarkan;
  • Pemesanan secara langsung dan tersedianya tagihan
  • Otomasi dan otorisasi account pelanggan secara aman (baik no rekening ataupun kartu kredit)
  • Pembayaran dilakukan secara langsung (online)

Alur proses E-commerce :

e-comm.JPG

Penjelasan dari e-commerce di Web dalam bahasa Inggris:

  • Using electronic information technologies on the Internet to allow direct selling and automatic processing of purchases between parties.
    Source
  • A system used to conduct business transactions of buying and selling goods and services over a computer network.
    Source
  • Any on-line transaction of buying and selling where business is done via Electronic Data Interchange (EDI).
    Source
  • Electronic- or e-commerce has become the umbrella term used to cover any transaction conducted over the Internet. Examples of such transactions include purchasing books, medical supplies, any products and services and transmitting prescriptions and claims.
    Source
  • Electronic Commerce - the sale and purchase of goods or services over the Internet.
    Source
  • business that is conducted over the Internet using any of the applications that rely on the Internet. This commerce can be between two businesses (commonly referred to as B2B) or between a business and a consumer (commonly referred to as B2C).
    Source
  • Electronic exchange of value between a business and its partners, suppliers, and customers.
    Source
  • is the conducting commercial transactions on the internet where goods, information or services are bought and then paid for.
    Source
  • E-commerce means selling products and / or services on the Internet.
    Source
  • Conducting business on-line through the Internet.
    Source
  • The ability to shop and exchange funds electronically online via the internet or a network. Simply put the ability to buy and sell on the internet.
    Source
  • Electronic commerce: commerce via the Internet.
    Source
  • E-commerce (or electronic commerce) is any business transaction whose price or essential terms were negotiated over an online system such as an Internet, Extranet, Electronic Data Interchange network, or electronic mail system. …
    Source
  • the exchange of goods, information products, or services via an electronic medium such as the Internet. Enterprise: A venture characterized by innovation, creativity, dynamism, and risk. An enterprise can consist of one project, or may refer to an entire organization.
    Source
  • e-Commerce is the term for electronic business transactions, commerce or Internet trade. e-Commerce or e-business, therefore, refers to the business transactions between companies (B2B) or between companies and their customers (B2C) that are wholly or partially conducted over the Internet or …
    Source
  • commerce transacted electronically over the Internet
    Source
  • A broad term encompassing the remote procurement and payment by businesses or consumers of goods and services through electronic systems such as the Internet.
    Source
  • The use of the Internet, especially the World Wide Web, as a commercial sales and marketing medium.
    Source
  • (electronic commerce) - transactions which are conducted over an electronic network where the buyer and merchant are not at the same physical location eg the buying of books on the internet. For more information please see ‘Your money and the internet’ in the BBA leaflets section of this website.
    Source
  • The means by which people conduct business online - trading money for services. The process of taking money via credit card transactions, PayPal and other forms of payment - in exchange for a service or product sold via the internet, is E-Commerce.
    Source
  • Performing business transactions on the Internet - which may include the use of credit cards, ’shopping trolleys’, forms, and secure servers. - View the Wikipeida full summary for E-commerce
    Source
  • Exchange of information via the Internet from business processes between two or more entities.
    Source
  • The act of conducting business on-line, e-commerce may include buying and selling products with digital cash and via electronic data interchange.
    Source
  • E-commerce is simply buying things over the Internet. See our FAQ for more details.
    Source
  • Electronic Commerce, allowing customers to purchase items and conduct financial transactions over the Internet safely and securely.
    Source
  • commerce conducted electronically (as on the internet)
    Source

Inlinks :

(No Ratings Yet)
521 Views
« Previous Page

Most Viewed Post/Page:

  • Tips : Mengatasi Komputer Bermasalah - 15,459 Views
  • Tips : Membuat Jaringan Wi-Fi - 6,709 Views
  • Download - 6,052 Views
  • Memilih Anti Virus - 5,193 Views
  • Apa itu Multimedia ? - 5,172 Views
  • SORTING ALGORITHM ANALYSIS - 4,840 Views
  • Tips : Merawat Komputer - 3,751 Views
  • Sejarah Kriptografi - 3,579 Views
  • Database - 3,357 Views
  • Power Builder 11.0 Launching - 3,350 Views
  • Most Rated Post/Page:

  • Tips : Membuat Jaringan Wi-Fi - 8 Votes
  • Tips : Mengatasi Komputer Bermasalah - 7 Votes
  • Download - 5 Votes
  • Tips : Komputer Aman Dari Virus - 5 Votes
  • Memilih Anti Virus - 4 Votes
  • Menjalankan Banyak Account Yahoo Messenger - 3 Votes
  • Aplikasi Web Atau Aplikasi Desktop ? - 3 Votes
  • Aplikasi Untuk Amankan Data Penting - 3 Votes
  • Tips : Merawat Komputer - 2 Votes
  • Database #2 - 2 Votes
  • ruldrurd
    porn movies buy online pharmacy viagra soft tabs viagra or levitra order cialis soft tabs online information on viagra for woman cheap cialis soft tabs levitra cheap generic viagra online viagra levitra purchase uk free cialis order online cialis cream for women levitra for women online viagra soft tabs
    Powered by WordPress, Web Design by Laurentiu Piron
    Entries (RSS) and Comments (RSS)