Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~701 People Reached
Favorite Forums
Favorite Tags
Member Avatar for anwaryp

I am looking for computer algorithm that not in my directory codewordblog.blogspot.com. please inform me your suggestions........

Member Avatar for adam_k
-1
152
Member Avatar for fat0ali0ma

Hi evreybody can anyone help me to solve this problem in introduction of algorithms ( Suppose program A has time complexity θ(f(n)) and program B has time complexity θ(g(n)) where f = o(g). What can you say about the real-world running time of program A versus program B?) plz im …

Member Avatar for mrnutty
-2
106
Member Avatar for jamd200

This program allows one to use many different sorting algorithms to sort an iterable. [code=python] from time import* from random import* #GNOME SORT def gnome_sort(lst): pos = 1 while pos < len(lst): if lst[pos] >= lst[pos-1]: pos = pos+1 else: temp = lst[pos] lst[pos] = lst[pos-1] lst[pos-1] = temp if …

Member Avatar for jamd200
0
330
Member Avatar for Butz

A company handles international messages. Currently, the messages are printed onto a continuous strip of paper which is cut up and pasted onto sheets of paper for delivery. The owner of the company has decided to automate this process, printing the messages directly onto sheets of paper. Your task is …

Member Avatar for Fest3er
0
112