时间复杂度

常见函数的时间复杂度

计算机科学中,算法时间复杂度(time complexity)是一个函数,它定性描述该算法的运行时间。这是一个代表算法输入值的字符串的长度的函数。时间复杂度常用大O符号表述,不包括这个函数的低阶项和首项系数。使用这种方式时,时间复杂度可被称为是渐近的,亦即考察输入值大小趋近无穷时的情况。例如,如果一个算法对于任何大小为 n (必須比 n0 大)的输入,它至多需要 5n3 + 3n 的时间运行完毕,那么它的渐近时间复杂度是 O(n3)。

為了計算時間複雜度,我們通常會估計算法的操作單元數量,每個單元執行的時間都是相同的。因此,總運行時間和算法的操作單元數量最多相差一个常量系数。

相同大小的不同輸入值仍可能造成算法的執行時間不同,因此我們通常使用算法的最壞情況複雜度英语Worst-case complexity,記為 T(n) ,定義為任何大小的輸入 n 所需的最大執行時間。另一種較少使用的方法是平均情況複雜度英语average-case complexity,通常有特別指定才會使用。時間複雜度可以用函數 T(n) 的自然特性加以分類,舉例來說,有著 T(n) = O(n) 的算法被稱作「線性時間算法」;而 T(n) = O(Mn) 和 Mn= O(T(n)) ,其中 Mn > 1 的算法被稱作「指數時間算法」。

常见时间复杂度列表

以下表格統整了一些常用的時間複雜度類別。表中,poly(x) = xO(1),也就是 x 的多項式。

名称 复杂度类 运行时间( 运行时间举例 算法举例
常数时间 10 判断一个二进制数的奇偶
阿克曼时间 并查集的单个操作的平摊时间
迭代对数时间 分散式圓環著色問題
对数对数时间 有界优先队列的单个操作[1]
对数时间 DLOGTIME 二分搜索
幂对数时间
(小于1次)幂时间 ,其中 K-d树的搜索操作
线性时间 无序数组的搜索
线性迭代对数时间 萊姆德·賽德爾英语Raimund Seidel三角分割多边形英语Polygon triangulation算法
线性对数时间 最快的比较排序
二次时间 冒泡排序插入排序
三次时间 矩阵乘法的基本实现,计算部分相关性英语Partial correlation
多项式时间 P 线性规划中的卡馬卡演算法英语Karmarkar's algorithmAKS质数测试
准多项式时间 QP 关于有向斯坦纳树问题英语Steiner tree problem最著名的近似算法
次指数时间(第一定义) SUBEXP ,对任意的ε > 0 假設複雜性理論推測,BPP 包含在 SUBEXP 中。[2]
次指数时间(第二定义) 2o(n 2n1/3 用於整數分解圖形同構問題英语Graph isomorphism problem的著名演算法
指数时间 E 2O(n) 1.1n, 10n 使用动态规划解决旅行推销员问题
阶乘时间 O(n!) n! 通过暴力搜索解决旅行推销员问题
指数时间 EXPTIME 2poly(n) 2n, 2n2
双重指数时间 2-EXPTIME 22poly(n) 22n 預膨脹算術英语Presburger arithmetic中決定一個給定描述的真實性

常数时间

若对于一个算法,的上界与输入大小无关,则称其具有常数时间,记作时间。一个例子是访问数组中的单个元素,因为访问它只需要一条指令。但是,找到无序数组中的最小元素则不是,因为这需要遍历所有元素来找出最小值。这是一项线性时间的操作,或称时间。但如果预先知道元素的数量并假设数量保持不变,则该操作也可被称为具有常数时间。

虽然被称为「常数时间」,运行时间本身不须与问题规模无关,但它的上界必须是与问题规模无关的确定值。举例,「如果a > b则交换a、b的值」这项操作,尽管具体时间会取决于条件「a > b」是否满足,但它依然是常数时间,因为存在一个常量t使得所需时间总不超过t。

以下是一个常数时间的代码片段:

int index = 5;
int item = list[index];
if (condition true) then
   perform some operation that runs in constant time
else
   perform some other operation that runs in constant time
for i = 1 to 100
   for j = 1 to 200
      perform some operation that runs in constant time

如果,其中是一个常数,这记法等价于标准记法

对数时间

若算法的T(n) = O(log n),则称其具有对数时间。计算机使用二进制的记数系统,对数常常以2为底(即log2 n,有时写作lg n)。然而,由对数的换底公式,loga n和logb n只有一个常数因子不同,这个因子在大O记法中被丢弃。因此记作O(log n),而不论对数的底是多少,是对数时间算法的标准记法。

常见的具有对数时间的算法有二叉树的相关操作和二分搜索

对数时间的算法是非常有效的,因为每增加一个输入,其所需要的额外计算时间会变小。

递归地将字符串砍半并且输出是这个类别函数的一个简单例子。它需要O(log n)的时间因为每次输出之前我们都将字符串砍半。 这意味着,如果我们想增加输出的次数,我们需要将字符串长度加倍。

// 递归输出一个字符串的右半部分
var right = function(str)
{
    var length = str.length;

    // 辅助函数
    var help = function(index)
    {

        // 递归情况:输出右半部分
        if(index < length){

            // 输出从index到数组末尾的部分
            console.log(str.substring(index, length));

            // 递归调用:调用辅助函数,将右半部分作为参数传入
            help(Math.ceil((length + index)/2));
        }

        // 基本情况:什么也不做
    }
    help(0);
}

幂对数时间

对于某个常数k,若算法的T(n) = O((log n)k),则称其具有幂对数时间。例如,矩阵链排序可以通过一个PRAM模型.[3]被在幂对数时间内解决。

次线性时间

对于一个演算法,若其符合T(n) = o(n),则其时间复杂度为次线性时间sub-linear timesublinear time)。实际上除了符合以上定义的演算法,其他一些演算法也拥有次线性时间的时间复杂度。例如有O(n½) 葛羅佛搜尋英语Grover's algorithm演算法。

常见的非合次线性时间演算法都采用了诸如平行处理(就像NC1 matrix行列式计算那样)、非古典處理(如同葛羅佛搜尋那樣),又或者选择性地对有保证的输入结构作出假设(如幂对数时间的二分搜尋)。不过,一些情况,例如在头 log(n) 位元中每个字串有一个位元作为索引的字串组就可能依赖于输入的每个位元,但又符合次线性时间的条件。

「次线性时间演算法」通常指那些不符合前一段的描述的演算法。它们通常运行于传统电脑架構系列并且不容许任何对输入的事先假设。[4]但是它们可以是随机化算法,而且必须是真随机算法除了特殊情况。

线性时间

如果一个算法的时间复杂度为O(n),则称这个算法具有线性时间,或O(n)时间。非正式地说,这意味着对于足够大的输入,运行时间增加的大小与输入成线性关系。例如,一个计算列表所有元素的和的程序,需要的时间与列表的长度成正比。这个描述是稍微不准确的,因为运行时间可能显著偏离一个精确的比例,尤其是对于较小的n。

线性对数(准线性)时间

若一个算法时间复杂度T(n) = O(nlog n),则称这个算法具有线性对数时间。因此,从其表达式我们也可以看到,线性对数时间增长得比线性时间要快,但是对于任何含有n,且n的幂指数大于1的多项式时间来说,线性对数时间却增长得慢。

多项式时间

强多项式时间与弱多项式时间

复杂度类

多项式时间的概念出发,在计算复杂度理论中可以得到一些复杂度类。以下是一些重要的例子。

  • P:包含可以使用确定型图灵机在多项式时间内解决的决定性问题
  • NP:包含可以使用非确定型图灵机在多项式时间内解决的决定性问题。
  • ZPP:包含可以使用概率图灵机在多项式时间内零错误解决的决定性问题。
  • RP:包含可以使用概率图灵机在多项式时间内解决的决定性问题,但它给出的两种答案中(是或否)只有一种答案是一定正确的,另一种则有几率不正确。
  • BPP:包含可以使用概率图灵机在多项式时间内解决的决定性问题,它给出的答案有错误的概率在某个小于0.5的常数之内。
  • BQP:包含可以使用量子图灵机在多项式时间内解决的决定性问题,它给出的答案有错误的概率在某个小于0.5的常数之内。

在机器模型可变的情况下,P在确定性机器上是最小的时间复杂度类。例如,将单带图灵机换成多带图灵机可以使算法运行速度以二次阶提升,但所有具有多项式时间的算法依然会以多项式时间运行。一种特定的抽象机器会有自己特定的复杂度类分类。

超越多项式时间

如果一個算法的時間 T(n) 沒有任何多項式上界,則稱這個算法具有超越多項式(superpolynomial)時間。在這種情況下,對於所有常數 c 我們都有 T(n) = ω(nc),其中 n 是輸入參數,通常是輸入的數據量(比特數)。指數時間顯然屬於超越多項式時間,但是有些算法僅僅是很弱的超越多項式算法。例如,Adleman-Pomerance-Rumely 質數測試英语Adleman–Pomerance–Rumely primality test對於 n 比特的輸入需要運行 nO(log log n) 時間;對於足夠大的 n,這時間比任何多項式都快;但是輸入要大得不切實際,時間才能真正超過低階的多項式。

准多项式时间

準多項式時間演算法是運算慢於多項式時間的演算法,但不會像指數時間那麼慢。對一些固定的 ,準多項式時間演算法的最壞情況運行時間是 。如果準多項式時間演算法定義中的常數“c”等於1,則得到多項式時間演算法;如果小於1,則得到一個次線性時間算法。

次指數時間

術語次指數時間用於表示某些演算法的運算時間可能比任何多項式增長得快,但仍明顯小於指數。在這種狀況下,具有次指數時間演算法的問題比那些僅具有指數演算法的問題更容易處理。“次指數”的確切定義並沒有得到普遍的認同,[5]我們列出了以下兩個最廣泛使用的。

第一定义

如果一個問題解決的運算時間的對數值比任何多項式增長得慢,則可以稱其為次指數時間。更準確地說,如果對於每個 ε> 0,存在一個能於時間 O(2nε) 內解決問題的演算法,則該問題為次指數時間。所有這些問題的集合是複雜性SUBEXP,可以按照 DTIME 的方式定義如下。[2][6][7][8]

第二定义

一些作者將次指數時間定義為 2o(n) 的運算時間。[9][10][11]該定義允許比次指數時間的第一個定義更多的運算時間。這種次指數時間演算法的一個例子,是用於整數因式分解的最著名古典演算法——普通數域篩選法,其運算時間約為 ,其中輸入的長度為 n。另一個例子是圖形同構問題英语Graph isomorphism problem的最著名演算法,其運算時間為

指数时间

T(n) 是以 2poly(n)為上界,其中 poly(n) 是 n 的多項式,則演算法被稱為指數時間。更正規的講法是:若 T(n) 對某些常數 k是由 O(2nk) 所界定,則演算法被稱為指數時間。在確定性圖靈機上認定為指數時間演算法的問題,形成稱為EXP的複雜性級別。

有時侯,指數時間用來指稱具有 T(n) = 2O(n) 的演算法,其中指數最多為 n 的線性函數。這引起複雜性等級 E

双重指数时间

T(n) 是以 22poly(n) 為上界,其中 poly(n) 是 n 的多項式,則演算法被稱為雙重指數時間。這種演算法屬於複雜性等級 2-EXPTIME

眾所周知的雙重指數時間演算法包括:

参见

參考資料

  1. ^ Mehlhorn, Kurt; Naher, Stefan. Bounded ordered dictionaries in O(log log N) time and O(n) space. Information Processing Letters. 1990, 35 (4): 183. doi:10.1016/0020-0190(90)90022-P. 
  2. ^ 2.0 2.1 Babai, László; Fortnow, Lance; Nisan, N.; Wigderson, Avi. BPP has subexponential time simulations unless EXPTIME has publishable proofs. Computational Complexity (Berlin, New York: Springer-Verlag). 1993, 3 (4): 307–318. doi:10.1007/BF01275486. 
  3. ^ Bradford, Phillip G.; Rawlins, Gregory J. E.; Shannon, Gregory E. Efficient Matrix Chain Ordering in Polylog Time. SIAM Journal on Computing (Philadelphia: Society for Industrial and Applied Mathematics). 1998, 27 (2): 466–490. ISSN 1095-7111. doi:10.1137/S0097539794270698. 
  4. ^ Kumar, Ravi; Rubinfeld, Ronitt. Sublinear time algorithms (PDF). SIGACT News. 2003, 34 (4): 57–67 [2013-05-01]. (原始内容存档 (PDF)于2016-03-03). 
  5. ^ Aaronson, Scott. A not-quite-exponential dilemma. Shtetl-Optimized. 5 April 2009 [2 December 2009]. (原始内容存档于2019-05-25). 
  6. ^ Complexity Zoo: Class SUBEXP: Deterministic Subexponential-Time
  7. ^ Moser, P. Baire's Categories on Small Complexity Classes. Lecture Notes in Computer Science (Berlin, New York: Springer-Verlag). 2003: 333–342. ISSN 0302-9743. 
  8. ^ Miltersen, P.B. DERANDOMIZING COMPLEXITY CLASSES. Handbook of Randomized Computing (Kluwer Academic Pub). 2001: 843. 
  9. ^ Impagliazzo, Russell; Paturi, Ramamohan. On the complexity of k-SAT (PDF). Journal of Computer and System Sciences. 2001, 62 (2): 367–375 [2021-08-12]. MR 1820597. doi:10.1006/jcss.2000.1727可免费查阅. (原始内容存档 (PDF)于2021-07-10). 
  10. ^ Kuperberg, Greg. A Subexponential-Time Quantum Algorithm for the Dihedral Hidden Subgroup Problem. SIAM Journal on Computing (Philadelphia: Society for Industrial and Applied Mathematics). 2005, 35 (1): 188. ISSN 1095-7111. doi:10.1137/s0097539703436345. 
  11. ^ Oded Regev. A Subexponential Time Algorithm for the Dihedral Hidden Subgroup Problem with Polynomial Space. 2004. arXiv:quant-ph/0406151v1可免费查阅. 
  12. ^ Mayr,E. & Mayer,A.: The Complexity of the Word Problem for Commutative Semi-groups and Polynomial Ideals. Adv. in Math. 46(1982) pp. 305-329
  13. ^ J.H. Davenport & J. Heintz: Real Quantifier Elimination is Doubly Exponential. J. Symbolic Comp. 5(1988) pp. 29-35.
  14. ^ G.E. Collins: Quantifier Elimination for Real Closed Fields by Cylindrical Algebraic Decomposition. Proc. 2nd. GI Conference Automata Theory & Formal Languages (Springer Lecture Notes in Computer Science 33) pp. 134-183

Read other articles:

يفتقر محتوى هذه المقالة إلى الاستشهاد بمصادر. فضلاً، ساهم في تطوير هذه المقالة من خلال إضافة مصادر موثوق بها. أي معلومات غير موثقة يمكن التشكيك بها وإزالتها. (نوفمبر 2019) دوري هونغ كونغ لكرة القدم 1936–37 تفاصيل الموسم دوري هونغ كونغ الدرجة الأولى  [لغات أخرى]‏  البطل ...

 

Año 2009Años 2006 • 2007 • 2008 ← 2009 → 2010 • 2011 • 2012Decenios Años 1970 • Años 1980 • Años 1990 ← Años 2000 → Años 2010 • Años 2020 • Años 2030Siglos Siglo XX ← Siglo XXI → Siglo XXIITabla anual del siglo XXI Ir al año actualNoticias por mes Ene. • Feb. • Mar. • Abr. • May. • Jun. • Jul. • Ago. • Sep. • Oct. • Nov. • Dic.Artes Música • Cine • TelevisiónCategorías Categoría principalNacimientos • Fa...

 

Xenopus Xenopus laevis Klasifikasi ilmiah Kerajaan: Animalia Filum: Chordata Kelas: Amphibia Ordo: Anura Famili: Pipidae Genus: XenopusWagler, 1827 Spesies Xenopus amieti Xenopus andrei Xenopus borealis Xenopus boumbaensis Xenopus clivii Xenopus fraseri Xenopus gilli Xenopus itombwensis Xenopus laevis Xenopus largeni Xenopus longipes Xenopus muelleri Xenopus petersii Xenopus pygmaeus Xenopus ruwenzoriensis Xenopus tropicalis Xenopus vestitus Xenopus victorianus Xenopus wittei Xenopus adalah ...

Голубянки Самец голубянки икар Научная классификация Домен:ЭукариотыЦарство:ЖивотныеПодцарство:ЭуметазоиБез ранга:Двусторонне-симметричныеБез ранга:ПервичноротыеБез ранга:ЛиняющиеБез ранга:PanarthropodaТип:ЧленистоногиеПодтип:ТрахейнодышащиеНадкласс:ШестиногиеКласс...

 

Para otros usos de este término, véase Estado de Antioquia. Antioquia Estado federado 1856-1886BanderaEscudo Localización del estado de Antioquia en los Estados Unidos de Colombia Estado Soberano de Antioquia en 1865.Coordenadas 6°20′00″N 75°15′00″O / 6.33333, -75.25Capital MedellínEntidad Estado federado • País Estados Unidos de ColombiaIdioma oficial EspañolSuperficie hist.   • 1874 59 000 km²Población hist.   • 1874 est...

 

1921 short story by H. P. Lovecraft The Nameless CityShort story by H. P. LovecraftThe Wolverine, November 1921Text available at WikisourceCountryUnited StatesLanguageEnglishGenre(s)Horror, fantasy, adventurePublicationPublished inThe WolverinePublication dateNovember 1921 The Nameless City is a short horror story written by American writer H. P. Lovecraft in January 1921 and first published in the November 1921 issue of the amateur press journal The Wolverine. It is often considered the firs...

Ethnic group Sherwood Valley Rancheria of Pomo Indians of CaliforniaTotal population350[1]Regions with significant populationsUnited States (California)LanguagesEnglish, Pomoan languagesReligionTraditional Tribal religion, Christianity, KuksuRelated ethnic groupsPomo tribes Grave of a Pomo man and woman, reinterred at the Westport Cemetery, by the Sherwood Valley Band of Pomo Indians in Westport, California. The Sherwood Valley Rancheria of Pomo Indians of California is a federally re...

 

Painting by Francisco de Goya Still-Life: A Butcher's CounterArtistFrancisco GoyaYear1808–1812Mediumoil paint, canvasDimensions45 cm (18 in) × 62 cm (24 in)LocationLouvre, ParisCollectionDepartment of Paintings of the Louvre Accession No.RF 1937 120 IdentifiersJoconde work ID: 000PE022858[edit on Wikidata] Still Life of a Lamb's Head and Flanks (Spanish: Bodegón con costillas, lomo y cabeza de cordero) or A Butcher's Counter (Spanish: Trozos de C...

 

OttoRaja YunaniBerkuasa27 Mei 1832 – 23 Oktober 1862PenobatanTidak adaPenerusGeorge IInformasi pribadiKelahiran(1815-06-01)1 Juni 1815Salzburg, AustriaKematian26 Juli 1867(1867-07-26) (umur 52)Bamberg, BayernPemakamanTheatinerkirche, MunichWangsaWittelsbachAyahLudwig I dari BayernIbuTherese dari Saxe-HildburghausenPasanganAmalia dari OldenburgAgamaKatolik Roma Otto, juga dieja Otho (bahasa Yunani: O Όθων, Βασιλεύς της Ελλάδος, O Óthon, Vasiléfs tis Elládos;...

Community Shield FA 2012 Chelsea Manchester City 2 3 Tanggal12 Agustus 2012StadionVilla Park, BirminghamPemain Terbaik Yaya Touré (Manchester City)WasitKevin Friend (Leicestershire)[1]Penonton36,394CuacaHujan 19 °C (66 °F)[2]← 2011 2013 → Community Shield FA 2012 merupakan pertandingan sepak bola yang dihelat pada 12 Agustus 2012 antara juara Liga Utama Inggris 2011–12 (Manchester City) dan juara kompetisi Piala FA 2011–2012 (Chelsea). Community Sh...

 

Second ActTeaser posterSutradaraPeter SegalProduser Jennifer Lopez Elaine Goldsmith-Thomas Justin Zackham Benny Medina Ditulis oleh Justin Zackham Elaine Goldsmith-Thomas Pemeran Jennifer Lopez Vanessa Hudgens Leah Remini Annaleigh Ashford Freddie Stroma Dan Bucatinsky Milo Ventimiglia Treat Williams Larry Miller Penata musikMichael AndrewsSinematograferUeli SteigerPenyuntingJason GoursonPerusahaanproduksiSTXfilmsDistributorSTXfilmsTanggal rilis 21 November 2018 (2018-11-21) Negara...

 

2015 concert tour by Elton John The Final Curtain TourNational tour by Elton JohnPromotional posterLocationU.S., North AmericaStart date8 August 2015End date10 October 2015Legs1No. of shows6Box office$6,587,305Elton John concert chronology All the Hits Tour(2015) The Final Curtain Tour(2015) Wonderful Crazy Night Tour(2016–18) The Final Curtain Tour was a concert tour by English musician Elton John which took place in North America in 2015. Background Elton John decided to wind down a 50-ye...

Tolima Departamento de Colombia Desde arriba y de izquierda a derecha: Ibagué, Nevado del Tolima, Termales de La Cabaña en Murillo, Cajamarca, Honda, Espinal y la represa prado en Prado. BanderaEscudo Lema: ¡Tierra Firme de Colombia! Himno: Bunde Tolimense Ubicación de Tolima en Colombia Coordenadas 4°03′N 75°15′O / 4.05, -75.25Capital IbaguéEntidad Departamento de Colombia • País  ColombiaDirigentes   • Gobernador Representantes a la Cámar...

 

Gehrels nel 1974 Anton M. J. Gehrels, detto Tom (Haarlemmermeer, 21 febbraio 1925 – Tucson, 11 luglio 2011), è stato un astronomo olandese naturalizzato statunitense. Indice 1 Biografia 2 Carriera 3 Riconoscimenti 4 Note 5 Bibliografia 6 Altri progetti 7 Collegamenti esterni Biografia Durante la Seconda guerra mondiale ha lavorato per lo Special Operations Executive, nel 1951 si è laureato in Fisica e Astronomia presso l'Università di Leida, nel 1956 ha conseguito il dottorato in Astrono...

 

Executive department of the Philippine government This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Department of Trade and Industry Philippines – news · newspapers · books · scholar · JSTOR (February 2016) (Learn how and when to remove this message) Department of Trade and IndustryKagawaran ng Kalakalan ...

Equipment used by divers to facilitate decompression Decompression equipmentSurface supplied diver on diving stageUsesEquipment used by divers to facilitate decompressionRelated itemsDive computer, Decompression practice, Diving bell, Diving chamber There are several categories of decompression equipment used to help divers decompress, which is the process required to allow divers to return to the surface safely after spending time underwater at higher ambient pressures. Decompression obligat...

 

Questa voce sull'argomento centri abitati della Baschiria è solo un abbozzo. Contribuisci a migliorarla secondo le convenzioni di Wikipedia. UčalycittàУчалы́ Učaly – Veduta LocalizzazioneStato Russia Circondario federaleVolga Soggetto federale Baschiria RajonUčalinskij TerritorioCoordinate54°18′00″N 59°27′00″E54°18′00″N, 59°27′00″E (Učaly) Altitudine540 m s.l.m. Superficie53 km² Abitanti39 300 (2008) Densità741,51 ab./km...

 

Artikel ini sebatang kara, artinya tidak ada artikel lain yang memiliki pranala balik ke halaman ini.Bantulah menambah pranala ke artikel ini dari artikel yang berhubungan atau coba peralatan pencari pranala.Tag ini diberikan pada Desember 2022. Patrick Helmes Informasi pribadiTanggal lahir 1 Maret 1984 (umur 40)Tempat lahir Cologne, Jerman BaratTinggi 1,82 m (5 ft 11+1⁄2 in)Posisi bermain PenyerangInformasi klubKlub saat ini 1. FC KölnNomor 10Karier junior1989–19...

Flag officer rank of the British Royal Navy Not to be confused with Rear-Admiral of the United Kingdom. For other uses of rear admiral, see rear admiral. Rear admiralFlag of a rear admiral, Royal NavyInsignia shoulder board and sleeve lace for rear admiralCountry United KingdomService branch Royal NavyAbbreviationRADM / R AdmRankTwo-starNATO rank codeOF-7Next higher rankVice-admiralNext lower rankCommodoreEquivalent ranksMajor-general (Army; Royal Marines)Air vice-marshal (RAF) Rear...

 

Andrew NallyNazionalità Stati Uniti Altezza197 cm Pallavolo RuoloSchiacciatore Squadra Academy United CarrieraGiovanili 2002-2006 McQuaid Jesuit HS Squadre di club 2007-2010 Springfield2010-2011 Tilburg2011-2012 Leeds2012 Conflans2012-2013 Nancy2013-2014 Dürener2014-2015 Łuczniczka Bydgoszcz2017- Academy United Nazionale 2014- Stati Uniti Statistiche aggiornate al 6 febbraio 2018 Modifica dati su Wikidata · Manuale Andrew John Nal...