Search (18 results, page 1 of 1)

  • × language_ss:"d"
  • × theme_ss:"Retrievalalgorithmen"
  1. Tober, M.; Hennig, L.; Furch, D.: SEO Ranking-Faktoren und Rang-Korrelationen 2014 : Google Deutschland (2014) 0.02
    0.02018284 = product of:
      0.07063994 = sum of:
        0.003649688 = product of:
          0.014598752 = sum of:
            0.014598752 = weight(_text_:m in 1484) [ClassicSimilarity], result of:
              0.014598752 = score(doc=1484,freq=2.0), product of:
                0.066373095 = queryWeight, product of:
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.026672479 = queryNorm
                0.21994986 = fieldWeight in 1484, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.0625 = fieldNorm(doc=1484)
          0.25 = coord(1/4)
        0.06699025 = sum of:
          0.038080227 = weight(_text_:berlin in 1484) [ClassicSimilarity], result of:
            0.038080227 = score(doc=1484,freq=2.0), product of:
              0.10719733 = queryWeight, product of:
                4.019024 = idf(docFreq=2159, maxDocs=44218)
                0.026672479 = queryNorm
              0.35523486 = fieldWeight in 1484, product of:
                1.4142135 = tf(freq=2.0), with freq of:
                  2.0 = termFreq=2.0
                4.019024 = idf(docFreq=2159, maxDocs=44218)
                0.0625 = fieldNorm(doc=1484)
          0.02891002 = weight(_text_:22 in 1484) [ClassicSimilarity], result of:
            0.02891002 = score(doc=1484,freq=2.0), product of:
              0.093402475 = queryWeight, product of:
                3.5018296 = idf(docFreq=3622, maxDocs=44218)
                0.026672479 = queryNorm
              0.30952093 = fieldWeight in 1484, product of:
                1.4142135 = tf(freq=2.0), with freq of:
                  2.0 = termFreq=2.0
                3.5018296 = idf(docFreq=3622, maxDocs=44218)
                0.0625 = fieldNorm(doc=1484)
      0.2857143 = coord(2/7)
    
    Date
    13. 9.2014 14:45:22
    Imprint
    Berlin : Searchmetrics
  2. Ackermann, J.: Knuth-Morris-Pratt (2005) 0.02
    0.016258193 = product of:
      0.056903675 = sum of:
        0.05066151 = weight(_text_:institut in 865) [ClassicSimilarity], result of:
          0.05066151 = score(doc=865,freq=4.0), product of:
            0.1470384 = queryWeight, product of:
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.026672479 = queryNorm
            0.34454614 = fieldWeight in 865, product of:
              2.0 = tf(freq=4.0), with freq of:
                4.0 = termFreq=4.0
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.03125 = fieldNorm(doc=865)
        0.006242163 = product of:
          0.018726489 = sum of:
            0.018726489 = weight(_text_:f in 865) [ClassicSimilarity], result of:
              0.018726489 = score(doc=865,freq=2.0), product of:
                0.10631079 = queryWeight, product of:
                  3.985786 = idf(docFreq=2232, maxDocs=44218)
                  0.026672479 = queryNorm
                0.17614852 = fieldWeight in 865, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  3.985786 = idf(docFreq=2232, maxDocs=44218)
                  0.03125 = fieldNorm(doc=865)
          0.33333334 = coord(1/3)
      0.2857143 = coord(2/7)
    
    Abstract
    Im Rahmen des Seminars Suchmaschinen und Suchalgorithmen beschäftigt sich diese Arbeit mit dem Auffinden bestimmter Wörter oder Muster in Texten. Der Begriff "Text" wird hier in einem sehr allgemeinen Sinne als strukturierte Folge beliebiger Länge von Zeichen aus einem endlichen Alphabet verstanden. Somit fällt unter diesen Bereich ganz allgemein die Suche nach einem Muster in einer Sequenz von Zeichen. Beispiele hierfür sind neben der Suche von Wörtern in "literarischen" Texten, z.B. das Finden von Pixelfolgen in Bildern oder gar das Finden von Mustern in DNS-Strängen. Das Anwendungsgebiet für eine solche Suche ist weit gefächert. Man denke hier allein an Texteditoren, Literaturdatenbanken, digitale Lexika oder die besagte DNADatenbank. Betrachtet man allein das 1989 publizierte Oxford English Dictionary mit seinen etwa 616500 definierten Stichworten auf gedruckten 21728 Seiten, so gilt es, einen möglichst effizienten Algorithmus für die Suche in Texten zu nutzen. Der in der Arbeit zugrunde liegende Datentyp ist vom Typ String (Zeichenkette), wobei hier offen gelassen wird, wie der Datentyp programmtechnisch realisiert wird. Algorithmen zur Verarbeitung von Zeichenketten (string processing) umfassen ein bestimmtes Spektrum an Anwendungsgebieten [Ot96, S.617 f.], wie z.B. das Komprimieren, das Verschlüssen, das Analysieren (parsen), das Übersetzen von Texten sowie das Suchen in Texten, welches Thema dieses Seminars ist. Im Rahmen dieser Arbeit wird der Knuth-Morris-Pratt Algorithmus vorgestellt, der wie der ebenfalls in diesem Seminar vorgestellte Boyer-Moore Algorithmus einen effizienten Suchalgorithmus darstellt. Dabei soll ein gegebenes Suchwort oder Muster (pattern) in einer gegeben Zeichenkette erkannt werden (pattern matching). Gesucht werden dabei ein oder mehrere Vorkommen eines bestimmten Suchwortes (exact pattern matching). Der Knuth-Morris-Pratt Algorithmus wurde erstmals 1974 als Institutbericht der Stanford University beschrieben und erschien 1977 in der Fachzeitschrift Journal of Computing unter dem Titel "Fast Pattern Matching in Strings" [Kn77]. Der Algorithmus beschreibt eine Suche in Zeichenketten mit linearer Laufzeit. Der Name des Algorithmus setzt sich aus den Entwicklern des Algorithmus Donald E. Knuth, James H. Morris und Vaughan R. Pratt zusammen.
    Content
    Ausarbeitung im Rahmen des Seminars Suchmaschinen und Suchalgorithmen, Institut für Wirtschaftsinformatik Praktische Informatik in der Wirtschaft, Westfälische Wilhelms-Universität Münster. - Vgl.: http://www-wi.uni-muenster.de/pi/lehre/ss05/seminarSuchen/Ausarbeitungen/JanAckermann.pdf
    Imprint
    Münster : Institut für Wirtschaftsinformatik der Westfälische Wilhelms-Universität Münster
  3. Nagelschmidt, M.: Verfahren zur Anfragemodifikation im Information Retrieval (2008) 0.02
    0.016134834 = product of:
      0.056471914 = sum of:
        0.0027372662 = product of:
          0.010949065 = sum of:
            0.010949065 = weight(_text_:m in 2774) [ClassicSimilarity], result of:
              0.010949065 = score(doc=2774,freq=2.0), product of:
                0.066373095 = queryWeight, product of:
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.026672479 = queryNorm
                0.1649624 = fieldWeight in 2774, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.046875 = fieldNorm(doc=2774)
          0.25 = coord(1/4)
        0.05373465 = weight(_text_:institut in 2774) [ClassicSimilarity], result of:
          0.05373465 = score(doc=2774,freq=2.0), product of:
            0.1470384 = queryWeight, product of:
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.026672479 = queryNorm
            0.36544636 = fieldWeight in 2774, product of:
              1.4142135 = tf(freq=2.0), with freq of:
                2.0 = termFreq=2.0
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.046875 = fieldNorm(doc=2774)
      0.2857143 = coord(2/7)
    
    Imprint
    Köln : Fachhochschule, Institut für Informationswissenschaft
  4. Mayr, P.: Re-Ranking auf Basis von Bradfordizing für die verteilte Suche in Digitalen Bibliotheken (2009) 0.01
    0.014081855 = product of:
      0.049286492 = sum of:
        0.0358231 = weight(_text_:institut in 4302) [ClassicSimilarity], result of:
          0.0358231 = score(doc=4302,freq=2.0), product of:
            0.1470384 = queryWeight, product of:
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.026672479 = queryNorm
            0.2436309 = fieldWeight in 4302, product of:
              1.4142135 = tf(freq=2.0), with freq of:
                2.0 = termFreq=2.0
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.03125 = fieldNorm(doc=4302)
        0.013463395 = product of:
          0.02692679 = sum of:
            0.02692679 = weight(_text_:berlin in 4302) [ClassicSimilarity], result of:
              0.02692679 = score(doc=4302,freq=4.0), product of:
                0.10719733 = queryWeight, product of:
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.026672479 = queryNorm
                0.251189 = fieldWeight in 4302, product of:
                  2.0 = tf(freq=4.0), with freq of:
                    4.0 = termFreq=4.0
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.03125 = fieldNorm(doc=4302)
          0.5 = coord(1/2)
      0.2857143 = coord(2/7)
    
    Imprint
    Berlin : Humboldt-Universität zu Berlin / Institut für Bibliotheks- und Informationswissenschaft
  5. Fichtner, K.: Boyer-Moore Suchalgorithmus (2005) 0.01
    0.010856039 = product of:
      0.07599227 = sum of:
        0.07599227 = weight(_text_:institut in 864) [ClassicSimilarity], result of:
          0.07599227 = score(doc=864,freq=4.0), product of:
            0.1470384 = queryWeight, product of:
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.026672479 = queryNorm
            0.51681924 = fieldWeight in 864, product of:
              2.0 = tf(freq=4.0), with freq of:
                4.0 = termFreq=4.0
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.046875 = fieldNorm(doc=864)
      0.14285715 = coord(1/7)
    
    Content
    Ausarbeitung im Rahmen des Seminars Suchmaschinen und Suchalgorithmen, Institut für Wirtschaftsinformatik Praktische Informatik in der Wirtschaft, Westfälische Wilhelms-Universität Münster. - Vgl.: http://www-wi.uni-muenster.de/pi/lehre/ss05/seminarSuchen/Ausarbeitungen/KristoferFichtner.pdf
    Imprint
    Münster : Institut für Wirtschaftsinformatik der Westfälische Wilhelms-Universität Münster
  6. Weiß, B.: Verwandte Seiten finden : "Ähnliche Seiten" oder "What's Related" (2005) 0.01
    0.009046699 = product of:
      0.06332689 = sum of:
        0.06332689 = weight(_text_:institut in 868) [ClassicSimilarity], result of:
          0.06332689 = score(doc=868,freq=4.0), product of:
            0.1470384 = queryWeight, product of:
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.026672479 = queryNorm
            0.43068266 = fieldWeight in 868, product of:
              2.0 = tf(freq=4.0), with freq of:
                4.0 = termFreq=4.0
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.0390625 = fieldNorm(doc=868)
      0.14285715 = coord(1/7)
    
    Content
    Ausarbeitung im Rahmen des Seminars Suchmaschinen und Suchalgorithmen, Institut für Wirtschaftsinformatik Praktische Informatik in der Wirtschaft, Westfälische Wilhelms-Universität Münster. - Vgl.: http://www-wi.uni-muenster.de/pi/lehre/ss05/seminarSuchen/Ausarbeitungen/BurkhardWei%DF.pdf
    Imprint
    Münster : Institut für Wirtschaftsinformatik der Westfälische Wilhelms-Universität Münster
  7. Marcus, S.: Textvergleich mit mehreren Mustern (2005) 0.01
    0.007237359 = product of:
      0.05066151 = sum of:
        0.05066151 = weight(_text_:institut in 862) [ClassicSimilarity], result of:
          0.05066151 = score(doc=862,freq=4.0), product of:
            0.1470384 = queryWeight, product of:
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.026672479 = queryNorm
            0.34454614 = fieldWeight in 862, product of:
              2.0 = tf(freq=4.0), with freq of:
                4.0 = termFreq=4.0
              5.512738 = idf(docFreq=484, maxDocs=44218)
              0.03125 = fieldNorm(doc=862)
      0.14285715 = coord(1/7)
    
    Content
    Ausarbeitung im Rahmen des Seminars Suchmaschinen und Suchalgorithmen, Institut für Wirtschaftsinformatik Praktische Informatik in der Wirtschaft, Westfälische Wilhelms-Universität Münster. - Vgl.: http://www-wi.uni-muenster.de/pi/lehre/ss05/seminarSuchen/Ausarbeitungen/SandraMarcus.pdf
    Imprint
    Münster : Institut für Wirtschaftsinformatik der Westfälische Wilhelms-Universität Münster
  8. Fuhr, N.: Modelle im Information Retrieval (2013) 0.00
    0.0034000205 = product of:
      0.023800142 = sum of:
        0.023800142 = product of:
          0.047600284 = sum of:
            0.047600284 = weight(_text_:berlin in 724) [ClassicSimilarity], result of:
              0.047600284 = score(doc=724,freq=2.0), product of:
                0.10719733 = queryWeight, product of:
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.026672479 = queryNorm
                0.44404358 = fieldWeight in 724, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.078125 = fieldNorm(doc=724)
          0.5 = coord(1/2)
      0.14285715 = coord(1/7)
    
    Imprint
    Berlin : DeGruyter-Saur
  9. Fuhr, N.: Ranking-Experimente mit gewichteter Indexierung (1986) 0.00
    0.0030975023 = product of:
      0.021682516 = sum of:
        0.021682516 = product of:
          0.04336503 = sum of:
            0.04336503 = weight(_text_:22 in 58) [ClassicSimilarity], result of:
              0.04336503 = score(doc=58,freq=2.0), product of:
                0.093402475 = queryWeight, product of:
                  3.5018296 = idf(docFreq=3622, maxDocs=44218)
                  0.026672479 = queryNorm
                0.46428138 = fieldWeight in 58, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  3.5018296 = idf(docFreq=3622, maxDocs=44218)
                  0.09375 = fieldNorm(doc=58)
          0.5 = coord(1/2)
      0.14285715 = coord(1/7)
    
    Date
    14. 6.2015 22:12:44
  10. Fuhr, N.: Rankingexperimente mit gewichteter Indexierung (1986) 0.00
    0.0030975023 = product of:
      0.021682516 = sum of:
        0.021682516 = product of:
          0.04336503 = sum of:
            0.04336503 = weight(_text_:22 in 2051) [ClassicSimilarity], result of:
              0.04336503 = score(doc=2051,freq=2.0), product of:
                0.093402475 = queryWeight, product of:
                  3.5018296 = idf(docFreq=3622, maxDocs=44218)
                  0.026672479 = queryNorm
                0.46428138 = fieldWeight in 2051, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  3.5018296 = idf(docFreq=3622, maxDocs=44218)
                  0.09375 = fieldNorm(doc=2051)
          0.5 = coord(1/2)
      0.14285715 = coord(1/7)
    
    Date
    14. 6.2015 22:12:56
  11. Elsweiler, D.; Kruschwitz, U.: Interaktives Information Retrieval (2023) 0.00
    0.0027200163 = product of:
      0.019040113 = sum of:
        0.019040113 = product of:
          0.038080227 = sum of:
            0.038080227 = weight(_text_:berlin in 797) [ClassicSimilarity], result of:
              0.038080227 = score(doc=797,freq=2.0), product of:
                0.10719733 = queryWeight, product of:
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.026672479 = queryNorm
                0.35523486 = fieldWeight in 797, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.0625 = fieldNorm(doc=797)
          0.5 = coord(1/2)
      0.14285715 = coord(1/7)
    
    Imprint
    Berlin : DeGruyter
  12. Reimer, U.: Empfehlungssysteme (2023) 0.00
    0.0023800144 = product of:
      0.0166601 = sum of:
        0.0166601 = product of:
          0.0333202 = sum of:
            0.0333202 = weight(_text_:berlin in 519) [ClassicSimilarity], result of:
              0.0333202 = score(doc=519,freq=2.0), product of:
                0.10719733 = queryWeight, product of:
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.026672479 = queryNorm
                0.3108305 = fieldWeight in 519, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.0546875 = fieldNorm(doc=519)
          0.5 = coord(1/2)
      0.14285715 = coord(1/7)
    
    Imprint
    Berlin : DeGruyter
  13. Kanaeva, Z.: Ranking: Google und CiteSeer (2005) 0.00
    0.0018068763 = product of:
      0.012648134 = sum of:
        0.012648134 = product of:
          0.025296267 = sum of:
            0.025296267 = weight(_text_:22 in 3276) [ClassicSimilarity], result of:
              0.025296267 = score(doc=3276,freq=2.0), product of:
                0.093402475 = queryWeight, product of:
                  3.5018296 = idf(docFreq=3622, maxDocs=44218)
                  0.026672479 = queryNorm
                0.2708308 = fieldWeight in 3276, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  3.5018296 = idf(docFreq=3622, maxDocs=44218)
                  0.0546875 = fieldNorm(doc=3276)
          0.5 = coord(1/2)
      0.14285715 = coord(1/7)
    
    Date
    20. 3.2005 16:23:22
  14. Fuhr, N.: Modelle im Information Retrieval (2023) 0.00
    0.0017000103 = product of:
      0.011900071 = sum of:
        0.011900071 = product of:
          0.023800142 = sum of:
            0.023800142 = weight(_text_:berlin in 800) [ClassicSimilarity], result of:
              0.023800142 = score(doc=800,freq=2.0), product of:
                0.10719733 = queryWeight, product of:
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.026672479 = queryNorm
                0.22202179 = fieldWeight in 800, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  4.019024 = idf(docFreq=2159, maxDocs=44218)
                  0.0390625 = fieldNorm(doc=800)
          0.5 = coord(1/2)
      0.14285715 = coord(1/7)
    
    Imprint
    Berlin : DeGruyter
  15. Hora, M.: Methoden für das Ranking in Discovery-Systemen (2018) 0.00
    4.5621104E-4 = product of:
      0.0031934772 = sum of:
        0.0031934772 = product of:
          0.012773909 = sum of:
            0.012773909 = weight(_text_:m in 4968) [ClassicSimilarity], result of:
              0.012773909 = score(doc=4968,freq=2.0), product of:
                0.066373095 = queryWeight, product of:
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.026672479 = queryNorm
                0.19245613 = fieldWeight in 4968, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.0546875 = fieldNorm(doc=4968)
          0.25 = coord(1/4)
      0.14285715 = coord(1/7)
    
  16. Stock, M.; Stock, W.G.: Internet-Suchwerkzeuge im Vergleich (IV) : Relevance Ranking nach "Popularität" von Webseiten: Google (2001) 0.00
    3.9103805E-4 = product of:
      0.0027372662 = sum of:
        0.0027372662 = product of:
          0.010949065 = sum of:
            0.010949065 = weight(_text_:m in 5771) [ClassicSimilarity], result of:
              0.010949065 = score(doc=5771,freq=2.0), product of:
                0.066373095 = queryWeight, product of:
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.026672479 = queryNorm
                0.1649624 = fieldWeight in 5771, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.046875 = fieldNorm(doc=5771)
          0.25 = coord(1/4)
      0.14285715 = coord(1/7)
    
  17. Agosti, M.; Pretto, L.: ¬A theoretical study of a generalized version of kleinberg's HITS algorithm (2005) 0.00
    3.2586502E-4 = product of:
      0.002281055 = sum of:
        0.002281055 = product of:
          0.00912422 = sum of:
            0.00912422 = weight(_text_:m in 4) [ClassicSimilarity], result of:
              0.00912422 = score(doc=4,freq=2.0), product of:
                0.066373095 = queryWeight, product of:
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.026672479 = queryNorm
                0.13746867 = fieldWeight in 4, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.0390625 = fieldNorm(doc=4)
          0.25 = coord(1/4)
      0.14285715 = coord(1/7)
    
  18. Mandl, T.: Tolerantes Information Retrieval : Neuronale Netze zur Erhöhung der Adaptivität und Flexibilität bei der Informationssuche (2001) 0.00
    1.3034602E-4 = product of:
      9.12422E-4 = sum of:
        9.12422E-4 = product of:
          0.003649688 = sum of:
            0.003649688 = weight(_text_:m in 5965) [ClassicSimilarity], result of:
              0.003649688 = score(doc=5965,freq=2.0), product of:
                0.066373095 = queryWeight, product of:
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.026672479 = queryNorm
                0.054987464 = fieldWeight in 5965, product of:
                  1.4142135 = tf(freq=2.0), with freq of:
                    2.0 = termFreq=2.0
                  2.4884486 = idf(docFreq=9980, maxDocs=44218)
                  0.015625 = fieldNorm(doc=5965)
          0.25 = coord(1/4)
      0.14285715 = coord(1/7)
    
    Type
    m