Ein weiterer bekannter Sortieralgorithmus ist der **Insertion sort**. Dieser Algorithmus ist auch **stabil**, da im Falle von Duplikaten die Reihenfolge nach der sortierung beibehalten wird. Auch hier wird eine nicht leere Liste von Objekten zum sortieren erwartet. Die Funktionsweise des Verfahrens ist ähnlich wie die des Selection sort. Zunächst wird ein Element gesucht, was eventuell sortiert werden muss. Danach wird die Liste mit einer weiteren Schleife durchlaufen, um so Werte zu finden, die größer sind als der zu sortierende Wert. Diese Elemente werden dann um eine Position nach rechts gerückt, falls man aufsteigend sortieren möchte. Die äußere Schleife durchläuft alle Indizes einzelnt, während die innere Schleife für die Verschiebeoperationen zuständig ist. * Insertion sort (c++) ``` #include <iostream> void insertionSort(){ const unsigned int SIZE = 10; unsigned int list[SIZE] = {56, 81, 3, 17, 35, 11, 8, 3, 17, 34}; // for each element in the list for(unsigned int i = 0; i < SIZE; i++){ unsigned int valueToSort = list[i]; unsigned int k = i; // find a value to sort while( k > 0 && list[k-1] > valueToSort ){ list[k] = list[k-1]; k--; } list[k] = valueToSort; } for(unsigned int res = 0; res < SIZE; res++){ std::cout << list[res] << "\n"; } } int main(){ insertionSort(); return 0; } ``` Quelle https://www.researchgate.net/publication/266703295_Insertion_Sort_is_On_log_n [letzter Zugriff: 03.02.2020, 21:10]
author | ozelot47 |
---|---|
permlink | sortieralgorithmen-insertion-sort |
category | de-stem |
json_metadata | {"tags":["de-stem","deutsch","stem","steemstem","palnet","science","programming"],"links":["https://www.researchgate.net/publication/266703295_Insertion_Sort_is_On_log_n"],"app":"steemit/0.1","format":"markdown"} |
created | 2020-02-04 11:56:03 |
last_update | 2020-02-04 11:56:03 |
depth | 0 |
children | 1 |
last_payout | 2020-02-11 11:56:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.461 HBD |
curator_payout_value | 1.417 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,559 |
author_reputation | 140,840,715,881,795 |
root_title | "Sortieralgorithmen: Insertion sort" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,089,452 |
net_rshares | 11,119,997,029,509 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 48,804,761,426 | 0.64% | ||
tombstone | 0 | 120,886,675,046 | 0.38% | ||
scalextrix | 0 | 23,038,601,541 | 50% | ||
justtryme90 | 0 | 144,188,583,560 | 10% | ||
eric-boucher | 0 | 4,119,012,800 | 1.08% | ||
thecryptodrive | 0 | 222,453,878,241 | 25% | ||
anwenbaumeister | 0 | 66,795,727 | 2.16% | ||
mammasitta | 0 | 678,609,347 | 0.1% | ||
matt-a | 0 | 153,203,018,884 | 3% | ||
slowwalker | 0 | 8,590,072,384 | 2.16% | ||
cabi5boh | 0 | 446,882,871 | 50% | ||
diana.catherine | 0 | 266,351,057 | 2.16% | ||
inertia | 0 | 169,296,926,764 | 100% | ||
blueorgy | 0 | 6,640,621,705 | 1.62% | ||
sc-steemit | 0 | 23,614,090,943 | 25% | ||
lemouth | 0 | 90,732,751,729 | 10% | ||
rwilday | 0 | 153,465,218 | 100% | ||
alaqrab | 0 | 1,351,976,248 | 1.08% | ||
lamouthe | 0 | 803,163,798 | 10% | ||
lk666 | 0 | 809,976,761 | 1.08% | ||
tarekadam | 0 | 23,343,508,391 | 50% | ||
curie | 0 | 657,765,255,011 | 2.16% | ||
techslut | 0 | 18,300,504,585 | 4% | ||
hendrikdegrote | 0 | 27,925,491,013 | 2.16% | ||
vact | 0 | 17,308,645,907 | 2.16% | ||
steemsportsfund | 0 | 27,683,825,391 | 100% | ||
steemstem | 0 | 458,905,715,813 | 10% | ||
saleg25 | 0 | 2,024,905,989 | 23% | ||
nutman | 0 | 2,647,118,198 | 2.16% | ||
dna-replication | 0 | 2,810,719,206 | 10% | ||
dimitrisp | 0 | 1,440,959,863 | 5% | ||
ambyr00 | 0 | 29,272,914,661 | 10% | ||
dr-boo | 0 | 136,440,074 | 100% | ||
bloom | 0 | 43,003,814,066 | 10% | ||
vannfrik | 0 | 3,854,789,950 | 8% | ||
iansart | 0 | 8,484,015,769 | 6.6% | ||
mvd | 0 | 1,948,925,235 | 1.08% | ||
jagged | 0 | 1,144,719,901 | 0.43% | ||
bitrocker2020 | 0 | 1,091,040,800 | 0.1% | ||
jiujitsu | 0 | 542,568,467 | 1.08% | ||
sustainablyyours | 0 | 1,622,337,714 | 5% | ||
helo | 0 | 1,772,082,646 | 5% | ||
freetissues | 0 | 2,891,829,993 | 1.08% | ||
samminator | 0 | 4,974,048,411 | 5% | ||
wishmaiden | 0 | 1,032,722,337 | 5% | ||
mxzn | 0 | 1,340,368,223 | 1.08% | ||
locikll | 0 | 886,174,213 | 4.32% | ||
kjaeger | 0 | 103,741,089 | 50% | ||
mahdiyari | 0 | 13,321,484,676 | 5% | ||
lorenzor | 0 | 6,012,720,749 | 50% | ||
firstamendment | 0 | 3,299,495,333 | 10% | ||
alexander.alexis | 0 | 5,975,460,252 | 10% | ||
techken | 0 | 480,456,965 | 2.5% | ||
suesa | 0 | 90,810,371,046 | 25% | ||
rival | 0 | 3,340,028,212 | 2% | ||
destrudo | 0 | 0 | 5% | ||
flatman | 0 | 2,417,726,447 | 2.16% | ||
allcapsonezero | 0 | 1,460,711,855 | 1.08% | ||
minnowbooster | 0 | 4,540,654,711,519 | 25% | ||
tsoldovieri | 0 | 707,481,707 | 5% | ||
neumannsalva | 0 | 575,647,647 | 1.08% | ||
stayoutoftherz | 0 | 13,400,597,501 | 0.86% | ||
abigail-dantes | 0 | 208,821,156,350 | 10% | ||
stevethevagabond | 0 | 12,997,270,139 | 10% | ||
buildteam | 0 | 144,340,249,052 | 100% | ||
zonguin | 0 | 690,906,602 | 2.5% | ||
supriya1993 | 0 | 8,180,110,344 | 15% | ||
alexzicky | 0 | 4,147,053 | 3% | ||
mountain.phil28 | 0 | 3,060,225,281 | 25% | ||
jasonbu | 0 | 18,378,460,833 | 25% | ||
coolbuddy | 0 | 0 | 1% | ||
tuoficinavirtual | 0 | 88,475,095 | 25% | ||
iamphysical | 0 | 6,520,456,010 | 90% | ||
felixrodriguez | 0 | 2,500,409,946 | 35% | ||
revo | 0 | 6,400,276,955 | 2.16% | ||
azulear | 0 | 8,003,579,198 | 100% | ||
djlethalskillz | 0 | 14,896,342,479 | 10% | ||
felicenavidad | 0 | 1,695,245,551 | 50% | ||
silviu93 | 0 | 1,540,562,810 | 5% | ||
mulletwang | 0 | 24,714,459,414 | 15% | ||
noloafing | 0 | 19,332,351,871 | 10% | ||
kimzwarch | 0 | 7,994,658,962 | 4% | ||
massivevibration | 0 | 3,993,762,546 | 5% | ||
kamikaze | 0 | 35,424,656,233 | 100% | ||
cloudspyder | 0 | 111,372,403,091 | 100% | ||
infamousit | 0 | 4,143,632,693 | 25% | ||
erikkun28 | 0 | 0 | 1% | ||
jlsplatts | 0 | 6,858,321,985 | 1.5% | ||
buttcoins | 0 | 2,608,302,236 | 0.43% | ||
rscalabrini | 0 | 3,539,157,663 | 10% | ||
spacecadet1 | 0 | 43,067,456,811 | 100% | ||
backtomining | 0 | 3,156,308,672 | 4% | ||
carloserp-2000 | 0 | 15,905,466,663 | 100% | ||
gammastern | 0 | 56,821,440,511 | 100% | ||
lays | 0 | 6,072,263,929 | 1.08% | ||
gra | 0 | 864,836,398 | 10% | ||
postpromoter | 0 | 653,630,505,837 | 10% | ||
wolfnworbeikood | 0 | 6,995,759,903 | 13% | ||
omstavan | 0 | 5,643,779,927 | 100% | ||
aalok | 0 | 137,797,015 | 26% | ||
dranren | 0 | 1,986,979,328 | 100% | ||
shivagangula | 0 | 8,430,336 | 25% | ||
drmake | 0 | 1,161,075,023 | 1.08% | ||
aboutcoolscience | 0 | 41,506,130,646 | 10% | ||
pechichemena | 0 | 724,189,595 | 0.43% | ||
bestwhale | 0 | 65,353,674 | 50% | ||
amrumk | 0 | 10,789,900 | 24% | ||
amestyj | 0 | 4,161,750,020 | 100% | ||
imcesca | 0 | 4,414,620,794 | 5% | ||
sandracarrascal | 0 | 625,514,117 | 50% | ||
mhm-philippines | 0 | 3,160,107,810 | 1.08% | ||
bitinvdig0 | 0 | 1,203,894,567 | 24% | ||
itchyfeetdonica | 0 | 2,249,536,526 | 0.43% | ||
kenadis | 0 | 2,654,436,156 | 10% | ||
steempsych | 0 | 2,673,750,470 | 10% | ||
robotics101 | 0 | 1,003,891,385 | 10% | ||
steemfreak | 0 | 51,106,503 | 100% | ||
gentleshaid | 0 | 7,202,400,016 | 10% | ||
nunesso | 0 | 163,022,221 | 50% | ||
dechastre | 0 | 625,893,210 | 0.43% | ||
sco | 0 | 105,492,381,080 | 100% | ||
ennyta | 0 | 973,571,471 | 50% | ||
bitcoinportugal | 0 | 277,685,914 | 50% | ||
vjap55 | 0 | 907,170,889 | 100% | ||
eliaschess333 | 0 | 772,139,999 | 50% | ||
intrepidphotos | 0 | 210,691,386,065 | 10% | ||
mattiarinaldoni | 0 | 0 | 1% | ||
hijosdelhombre | 0 | 1,937,363,263 | 2.5% | ||
fragmentarion | 0 | 2,793,179,933 | 8% | ||
suesa-random | 0 | 12,252,984,423 | 50% | ||
terrylovejoy | 0 | 3,252,653,856 | 4% | ||
neneandy | 0 | 2,446,315,561 | 2.16% | ||
traviseric | 0 | 250,325,551 | 50% | ||
lastditch | 0 | 164,488,038 | 17% | ||
stemng | 0 | 3,291,314,008 | 5% | ||
rbalzan79 | 0 | 37,757,968,513 | 80% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
warpedpoetic | 0 | 2,126,643,158 | 10% | ||
photoholic | 0 | 116,608,231,208 | 2.16% | ||
emiliomoron | 0 | 6,863,093,132 | 50% | ||
intellihandling | 0 | 2,300,692,969 | 50% | ||
oghie | 0 | 719,491,122 | 50% | ||
geopolis | 0 | 626,285,284 | 10% | ||
robertbira | 0 | 1,031,127,426 | 2.5% | ||
dacx | 0 | 7,376,893,101 | 1.94% | ||
atomcollector | 0 | 2,223,957,478 | 25% | ||
alexdory | 0 | 10,237,426,387 | 10% | ||
flugschwein | 0 | 1,949,347,826 | 8.5% | ||
cyprianj | 0 | 682,533,447 | 10% | ||
gjart | 0 | 1,660,945,516 | 30% | ||
francostem | 0 | 1,350,606,097 | 10% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
tajstar | 0 | 61,928,512 | 100% | ||
croctopus | 0 | 1,517,065,155 | 100% | ||
zipporah | 0 | 686,791,606 | 0.43% | ||
emmanuel293 | 0 | 102,849,166 | 25% | ||
cryptofuwealth | 0 | 77,979,240 | 11% | ||
davinci.witness | 0 | 32,196,108,170 | 10% | ||
satren | 0 | 30,433,335,262 | 10% | ||
lordjames | 0 | 1,825,038,682 | 1.08% | ||
bscrypto | 0 | 891,688,268 | 0.54% | ||
movingman | 0 | 6,155,182,141 | 5% | ||
delpilar | 0 | 934,959,443 | 25% | ||
tomastonyperez | 0 | 15,768,550,295 | 50% | ||
a0i | 0 | 25,006,673,352 | 10% | ||
elvigia | 0 | 10,930,970,754 | 50% | ||
scoora82 | 0 | 0 | 24% | ||
sanderjansenart | 0 | 618,026,882 | 1.08% | ||
qberry | 0 | 1,114,132,364 | 1.08% | ||
stmdev | 0 | 82,631,456 | 1% | ||
markko | 0 | 65,786,114 | 100% | ||
gifty-e | 0 | 736,017,470 | 98% | ||
eniolw | 0 | 2,644,632,702 | 100% | ||
de-stem | 0 | 39,238,295,730 | 100% | ||
elpdl | 0 | 551,788,014 | 100% | ||
serylt | 0 | 4,863,844,848 | 100% | ||
spaghettiscience | 0 | 4,648,234,869 | 5% | ||
josedelacruz | 0 | 8,191,007,807 | 50% | ||
joseangelvs | 0 | 1,548,054,697 | 100% | ||
dearw | 0 | 848,897,878 | 1.08% | ||
saboin | 0 | 52,760,959,187 | 7% | ||
yaraha | 0 | 3,588,826,089 | 25% | ||
deholt | 0 | 542,290,974 | 8.5% | ||
davinci.polyglot | 0 | 48,074,003 | 10% | ||
celinavisaez | 0 | 7,619,181,553 | 30% | ||
musicvoter | 0 | 11,097,124,685 | 2% | ||
honoru | 0 | 30,733,522,653 | 10% | ||
crystalhuman | 0 | 1,040,862,887 | 10% | ||
followmikecee | 0 | 4,341,602,475 | 35% | ||
powerupsteem | 0 | 568,118,026 | 99% | ||
temitayo-pelumi | 0 | 743,180,490 | 10% | ||
andrick | 0 | 866,365,209 | 50% | ||
steemjet | 0 | 9,077,486,018 | 1.08% | ||
yusvelasquez | 0 | 1,641,796,611 | 50% | ||
motherofalegend | 0 | 991,469,821 | 5% | ||
doctor-cog-diss | 0 | 4,001,530,917 | 100% | ||
davinci.times | 0 | 1,883,854,449 | 10% | ||
alexworld | 0 | 616,793,673 | 25% | ||
altobot | 0 | 7,875,206,337 | 50% | ||
musicvoter2 | 0 | 9,389,109,244 | 1% | ||
frost1903 | 0 | 63,887,107 | 50% | ||
itastem | 0 | 4,250,512,659 | 10% | ||
acont | 0 | 3,968,745,841 | 100% | ||
schroders | 0 | 806,718,882 | 0.64% | ||
anaestrada12 | 0 | 18,703,054,200 | 100% | ||
sagesigma | 0 | 806,630,302 | 1% | ||
melissaofficial | 0 | 542,620,509 | 2.16% | ||
juliocaraballo | 0 | 65,671,702 | 50% | ||
nin4i | 0 | 145,694,954 | 100% | ||
davinci.art | 0 | 177,509,853 | 10% | ||
longer | 0 | 1,277,072,939 | 50% | ||
blewitt | 0 | 2,293,148,947 | 0.1% | ||
kafupraise | 0 | 83,440,452 | 34% | ||
yomismosoy | 0 | 500,869,036 | 50% | ||
casiloko | 0 | 248,519,622 | 50% | ||
bflanagin | 0 | 962,181,255 | 1.08% | ||
ubaldonet | 0 | 10,423,047,778 | 70% | ||
sina-adventure | 0 | 1,324,531,916 | 50% | ||
lillywilton | 0 | 821,303,852 | 20% | ||
acousticguitar | 0 | 4,004,898,864 | 50% | ||
goblinknackers | 0 | 114,924,286,446 | 4% | ||
zuerich | 0 | 349,685,795,552 | 20% | ||
wstanley226 | 0 | 68,170,123 | 50% | ||
anttn | 0 | 32,615,335,450 | 15% | ||
amart29 | 0 | 2,745,244,977 | 10% | ||
reinaseq | 0 | 5,792,924,976 | 100% | ||
suasteguimichel | 0 | 54,562,832 | 50% | ||
yaelg | 0 | 2,586,651,133 | 5% | ||
pvinny69 | 0 | 550,716,853 | 2.16% | ||
kylealex | 0 | 4,595,384,415 | 10% | ||
stooner | 0 | 252,929,335 | 50% | ||
davinci.pay | 0 | 51,499,262 | 5% | ||
rubenp | 0 | 578,355,757 | 100% | ||
jeferc | 0 | 540,428,179 | 100% | ||
loveforlove | 0 | 932,556,715 | 10% | ||
rich.art.deluxe | 0 | 93,277,600,997 | 55% | ||
lupafilotaxia | 0 | 25,158,357,678 | 35% | ||
fran.frey | 0 | 4,160,836,814 | 50% | ||
perpetuum-lynx | 0 | 3,109,601,375 | 100% | ||
betza90 | 0 | 539,686,288 | 100% | ||
abraham10 | 0 | 60,245,348 | 82% | ||
alfonzoasdrubal | 0 | 797,179,714 | 100% | ||
emperorhassy | 0 | 964,032,783 | 10% | ||
smartkid809 | 0 | 74,284,268 | 32% | ||
moniroy | 0 | 49,934,238 | 50% | ||
davinci.vote | 0 | 73,141,746 | 10% | ||
remlaps-lite | 0 | 12,533,479,365 | 100% | ||
skorup87 | 0 | 15,248,836 | 11% | ||
stem-espanol | 0 | 76,942,524,584 | 100% | ||
praditya | 0 | 2,326,440,469 | 24% | ||
laissez-faire | 0 | 132,377,536 | 100% | ||
pet.society | 0 | 8,251,272,935 | 2% | ||
yashshah991 | 0 | 64,264,602 | 50% | ||
chappertron | 0 | 12,488,856,078 | 100% | ||
aleestra | 0 | 8,744,688,310 | 80% | ||
the.success.club | 0 | 706,285,417 | 1.08% | ||
macoolette | 0 | 4,837,926,892 | 0.64% | ||
javier.dejuan | 0 | 2,307,870,641 | 10% | ||
jmkengineering | 0 | 2,838,034,687 | 10% | ||
faithfullwills | 0 | 66,872,658 | 85% | ||
scienze | 0 | 5,337,124,556 | 10% | ||
scienza | 0 | 5,391,522,811 | 10% | ||
cryptorunway | 0 | 64,030,003 | 50% | ||
giulyfarci52 | 0 | 1,715,099,061 | 50% | ||
esthersanchez | 0 | 1,261,418,487 | 40% | ||
tinabrezpike | 0 | 1,542,378,903 | 100% | ||
adalger | 0 | 975,127,394 | 0.43% | ||
solarphasing | 0 | 668,372,970 | 5% | ||
cherryandberry | 0 | 0 | 5% | ||
akireuna | 0 | 3,111,120,813 | 5% | ||
the-rhapsodist | 0 | 11,528,981,132 | 10% | ||
megadrive | 0 | 22,061,507,548 | 100% | ||
stem.witness | 0 | 15,022,372,446 | 10% | ||
sanjib000 | 0 | 63,255,876 | 99% | ||
empressteemah | 0 | 856,950,540 | 10% | ||
xuhi | 0 | 61,383,068 | 50% | ||
anthive | 0 | 53,794,044 | 50% | ||
edriseur | 0 | 37,520,290,518 | 10% | ||
double-negative | 0 | 541,699,883 | 20% | ||
alex-hm | 0 | 843,767,962 | 50% | ||
wilmer14molina | 0 | 1,128,107,851 | 50% | ||
ppss | 0 | 924,978,062 | 2.11% | ||
moyam | 0 | 546,289,756 | 100% | ||
balcej | 0 | 542,276,952 | 100% | ||
anaka | 0 | 543,421,537 | 100% | ||
benhurg | 0 | 552,971,761 | 100% | ||
judisa | 0 | 544,061,170 | 100% | ||
juddarivv | 0 | 542,357,400 | 100% | ||
aristotle.team | 0 | 3,906,132,101 | 10% | ||
healthexpert | 0 | 2,229,031,840 | 1.08% | ||
kingnosa | 0 | 113,645,673 | 50% | ||
pamahdoo | 0 | 0 | 9% | ||
bluesniper | 0 | 1,161,490,925 | 0.25% | ||
travisung | 0 | 6,074,153,770 | 1.08% | ||
meins0816 | 0 | 2,593,570,444 | 88% | ||
cameravisual | 0 | 40,481,564,064 | 50% | ||
crowdwitness | 0 | 9,260,762,780 | 5% | ||
ctime | 0 | 47,148,216,056 | 0.5% | ||
amin-ove | 0 | 124,931,014 | 50% | ||
trailreward | 0 | 2,913,377,438 | 17% | ||
eternalsuccess | 0 | 1,680,323,225 | 2.16% | ||
bunchtale | 0 | 43,230,438 | 25% | ||
hairgistix | 0 | 1,021,751,225 | 1.08% | ||
goodcontentbot | 0 | 159,708,588 | 50% | ||
huilco | 0 | 521,809,158 | 100% | ||
hanyseek | 0 | 1,857,035 | 25% | ||
herculean | 0 | 49,647,240 | 50% | ||
wuzzerd | 0 | 49,500,539 | 50% | ||
limka | 0 | 64,412,275 | 100% | ||
mia-cc | 0 | 563,927,920 | 5% | ||
allthetimer | 0 | 125,104,621 | 98% | ||
alexgamer | 0 | 322,040,926 | 50% | ||
steemean | 0 | 11,054,949,240 | 10% | ||
hashkings | 0 | 78,855,178,233 | 20% | ||
ichbins | 0 | 2,903,722,459 | 10% | ||
donasys | 0 | 55,010,806 | 50% | ||
mtfmohammad | 0 | 109,058,893 | 25% | ||
cleiver | 0 | 49,821,978 | 50% | ||
kryptodenno | 0 | 103,998,251,268 | 15% | ||
chrisluke | 0 | 171,460,400 | 26% | ||
pflanzenlilly | 0 | 245,257,815 | 50% | ||
sapphire.app | 0 | 0 | 50% | ||
androshchuk | 0 | 151,187,059 | 50% | ||
sumotori | 0 | 672,126,126 | 75% | ||
naturalproducts | 0 | 10,612,610,674 | 25% | ||
smalltall | 0 | 7,909,453,960 | 50% | ||
ambifokus | 0 | 35,494,798,068 | 15% | ||
alexmonster | 0 | 111,801,245 | 50% | ||
smdragon | 0 | 112,257,575 | 50% | ||
faberleggenda | 0 | 520,731,875 | 100% | ||
mohaaking | 0 | 52,368,655 | 50% | ||
gustavoagt | 0 | 410,435,250 | 97% | ||
brendanweinhold | 0 | 135,097,128 | 100% | ||
vaccinusveritas | 0 | 0 | 50% | ||
epicdice | 0 | 14,292,969,560 | 0.64% | ||
thetechspot | 0 | 151,867,504 | 26% | ||
doggy5 | 0 | 53,849,706 | 100% | ||
robibasa | 0 | 4,927,238,528 | 10% | ||
imaloser | 0 | 48,571,215 | 50% | ||
sembdelgado | 0 | 199,073,043 | 50% | ||
yarak | 0 | 163,989,551 | 100% | ||
waltermeth | 0 | 662,499,192 | 20% | ||
zeruxanime | 0 | 1,043,599,864 | 20% | ||
bestbuds | 0 | 52,393,278 | 100% | ||
trichomes | 0 | 52,283,114 | 100% | ||
ragingboner | 0 | 52,481,749 | 100% | ||
oldstone.sct | 0 | 45,100,295,251 | 2.16% | ||
poppie-schultz | 0 | 93,701,808 | 10% | ||
zeasar | 0 | 50,857,772 | 25% | ||
drlobes | 0 | 938,940,282 | 5% | ||
curation.stem | 0 | 0 | 75% | ||
arm27312 | 0 | 49,310,722 | 50% | ||
borbina | 0 | 1,212,355,144 | 29% | ||
andylein | 0 | 826,437,464 | 1.08% | ||
joshmania | 0 | 24,157,956,822 | 5% | ||
steemstem-trig | 0 | 745,889,177 | 10% | ||
mein2070 | 0 | 2,625,064,100 | 100% | ||
c0mrade | 0 | 253,848,362 | 50% | ||
sqljoker | 0 | 31,872,240 | 2% | ||
mowemu | 0 | 1,049,979,057 | 5% | ||
lusce | 0 | 6,552,153,648 | 10% | ||
springflower | 0 | 79,320,468,186 | 2.16% | ||
steemlondon | 0 | 539,568,505 | 3% | ||
amapiano | 0 | 98,185,787 | 25% | ||
ibt-survival | 0 | 36,384,556,657 | 10% | ||
churchofgod | 0 | 744,392,608 | 1% | ||
curpal | 0 | 153,454,785 | 23% | ||
xerxes.alpha | 0 | 1,509,398,650 | 1.08% | ||
steem-agora | 0 | 71,162,615,819 | 2.16% | ||
hjmarseille | 0 | 938,735,824 | 7% | ||
milaim.neziraj | 0 | 552,293,465 | 25% | ||
tonystarkalive | 0 | 28,788,025 | 2% | ||
hereforxwhile | 0 | 0 | 4% | ||
p-translation | 0 | 50,850,686,478 | 2.16% | ||
reghunter | 0 | 540,635,398 | 25% | ||
jeffmackinnon | 0 | 965,257,150 | 2% | ||
trimust | 0 | -6,101,150 | -10% | ||
mahiu | 0 | 89,177,107 | 23% | ||
sebov1c | 0 | 0 | 100% |
<div class='text-justify'> <div class='pull-left'> <center> <br /> <img width='200' src='https://res.cloudinary.com/drrz8xekm/image/upload/v1553698283/weenlqbrqvvczjy6dayw.jpg'> </center> <br/> </div> This post has been voted on by the **SteemSTEM curation team** and voting trail. It is elligible for support from @curie and @minnowbooster.<br /> If you appreciate the work we are doing, then consider supporting our witness [@stem.witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness). Additional witness support to the [curie witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie) would be appreciated as well.<br /> For additional information please join us on the [SteemSTEM discord]( https://discord.gg/BPARaqn) and to get to know the rest of the community!<br /> Please consider using the <a href='https://www.steemstem.io'>steemstem.io</a> app and/or including @steemstem in the list of beneficiaries of this post. This could yield a stronger support from SteemSTEM.
author | steemstem |
---|---|
permlink | re-ozelot47-sortieralgorithmen-insertion-sort-20200205t082136074z |
category | de-stem |
json_metadata | {"app":"steemstem-bot"} |
created | 2020-02-05 08:21:39 |
last_update | 2020-02-05 08:21:39 |
depth | 1 |
children | 0 |
last_payout | 2020-02-12 08:21:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,050 |
author_reputation | 262,017,435,115,313 |
root_title | "Sortieralgorithmen: Insertion sort" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 95,117,420 |
net_rshares | 13,880,850,982 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ozelot47 | 0 | 13,880,850,982 | 100% |