This application claims priority under 35 U.S.C. §119 to Japan Patent Application No. JP820120025, filed 18 Sep. 2012, and all the benefits accruing therefrom under 35 U.S.C. §119, the contents of which in its entirety are herein incorporated by reference.
This disclosure relates to a device, method, and program for processing a structured document (data) with a tree structure such as an XML document or the like, and extracts a desired portion thereof.
Recently, structured documents (data) that are written in a structured language such as XML and the like are widely used in a variety of applications. Information systems that use this type of data include a system that receives a search request from outside, and extracts and returns a portion of the data that corresponds to search conditions. In such a system, there are cases where information of a portion of the structure that the original data has, corresponding to a data portion to be extracted is also requested as a search result.
For example, when performing a keyword search for an XML document with a tree structure, extraction of a tree structure (subtree) that includes text portions corresponding to the keywords is requested in addition to the text portions (partial data or subdata extracted from the original data and including its structure information is hereinafter referred to as “subdocument”). A technique for extracting a desired subdocument from an XML document has been proposed.
According to an embodiment of the invention, a device that processes data with a tree structure has a searching part that searches serialized the data to identify a number of nodes satisfying a search condition. The serialized data is constructed by arranging sequence elements corresponding to the respective nodes of the tree structure in the order of the nodes obtained by traversing the tree structure in preorder, and inserting a numerical value corresponding to the number of edges traced back for searching for a subsequent node of a leaf node immediately following a sequence element corresponding to the leaf node. An essential element string identifying part identifies an essential element string that is a sequence element string composed of a series of sequence elements including all the sequence elements corresponding to the identified number of nodes. A rear section identifying part identifies a sequence element string including the sequence elements located after the essential element string, based on a maximum value of the depth of the nodes corresponding to the respective sequence elements included in the essential element string and information of the depth in the tree structure of the nodes corresponding to the respective sequence elements included in the serialized data, so that an addition value of the depth of the nodes corresponding to the sequence elements exceed the maximum value.
Furthermore, embodiments of the invention may be implemented as a method for processing data with a tree structure using a computer. The processing method includes searching serialized data to identify a number of nodes satisfying a search condition, the serialized data constructed by arranging sequence elements corresponding to the respective nodes of the tree structure in the order of the nodes obtained by traversing the tree structure in preorder, and inserting a numerical value corresponding to the number of edges traced back for searching for a subsequent node of a leaf node immediately following a sequence element corresponding to the leaf node; identifying a first sequence element string composed of a series of sequence elements including all the sequence elements corresponding to the identified nodes; identifying a second sequence element string including the sequence elements located after the first sequence element string, based on a maximum value of the depth of the nodes corresponding to the respective sequence elements included in the first sequence element string and information of the depth in the tree structure of the nodes corresponding to the respective sequence elements included in the serialized data, so that an addition value of the depth of the nodes corresponding to the sequence elements exceed the maximum value; identifying a third sequence element string including the sequence elements located before the first sequence element string, based on the information of the depth in the tree structure of the nodes corresponding to the respective sequence elements included in the serialized data, so that the addition value of the depth of the nodes corresponding to the sequence elements is equal to a negative of the addition value of the depth of the nodes corresponding to the sequence elements included in the first sequence element string and the second sequence element string; and identifying a sequence element string corresponding to a subtree including all of the identified nodes, based on the first sequence element string, the second sequence element string, and the third sequence element string.
Embodiments of the invention may also be implemented as a program for causing a computer to realize the functions of the aforementioned device, or as a program for causing a computer to execute processing corresponding to the method. The program may be provided by storing it on a magnetic disk, an optical disk, semiconductor memory, or other recording medium and distributing, or by transmitting through a network.
An embodiment of the invention may be realized in a tree structure that can be restored based on the serialized data, thereby enabling extraction of the partial data or subdata that includes information of the tree structure from the original data. Serialized processing is required when transferring a structured document through a network or the like. At this time, however, a part of structure information in the original data is lost. Therefore, in order to acquire a relevant subdocument, means for acquiring, in addition to serialized data, structure information of a portion corresponding to the subdocument based on the structure information of the original data has is required.
However, transferring data (mapping data and the like) representing the structure of the original data, in addition to the serialized data, prevents improvement of transfer efficiency. Therefore, a tree structure based on serialized data may be restored by enabling extraction of partial data or subdata that includes information of the tree structure from the original data.
In addition, a front section identifying part identifies a sequence element string including the sequence elements located before the essential element string, based on the information of the depth in the tree structure of the nodes corresponding to the respective sequence elements included in the serialized data, so that the addition value of the depth of the nodes corresponding to the sequence elements is equal to a negative of the addition value of the depth of the nodes corresponding to the sequence elements included in the sequence element string identified by the rear section identifying part and the essential element string identified by the essential element string identifying part. A subtree identifying part identifies a sequence element string corresponding to a subtree including all of the nodes identified by the searching part, based on the essential element string identified by the essential element string identifying part, the sequence element string identified by the rear section identifying part, and the sequence element string identified by the front section identifying part.
In the aforementioned configuration, the data to be processed may be a structured document written in a structured language. The device further includes a subdocument generating part that restores the tree structure of the subtree based on the sequence element string identified by the subtree identifying part, and generates a subdocument, which is a portion of the structured document corresponding to the subtree. The data to be processed may be a structured document written in a structured language, with a text node added to a node of the tree structure. The searching part searches for text nodes by a keyword search, and identifies nodes in the tree structure that correspond to the searched text nodes. The front section identifying part may not perform the process of identifying the sequence element string if the addition value of the depth of the nodes corresponding to the sequence elements included in the sequence element string identified by the rear section identifying part and in the essential element string identified by the essential element string identifying part is zero.
Serialization of Target Data
An embodiment of the invention is described below in detail while referring to the attached drawings. In this embodiment, a case is described as an example where a keyword search is performed using an XML document as data with a tree structure to extract corresponding text (subdata) as well as a minimal subtree including the text. First, a method of extracting the minimal subtree by the present embodiment is described below. In the present embodiment, an XML document to be searched is serialized and stored. Serialization is performed by separating the tree structure and the text of the XML document. Furthermore, serialization of the tree structure of the XML document is performed by traversing in preorder. Furthermore, in the present embodiment, the serialized data of the tree structure is processed so as to contain the information of the tree structure of the original XML document. The serialization of the XML document by the present embodiment is described below by presenting a specific example.
Data illustrated in
Note that the serialized data of the tree structure illustrated in
Searching the tree structure illustrated in
Next, a method for adding information concerning the depth of each node to the serialized data of the tree structure is described while referring to
Therefore, in the present embodiment, in order to express advancement or retreat of the depth, (1) each sequence element of the serialized data that corresponds to each node of the tree structure contains the value −1 as depth information, and (2) when tracing back the edges to move to an untraversed edge after reaching a leaf node, the number of the traced back edges is inserted as a sequence element (referred to as numerical value element below) at a corresponding point in the serialized data. For example, when advancing from the aforementioned node e to node b, because an edge is traced back once in order to return to node a, a numerical value 1 is inserted as the numerical value element behind sequence element e. Similarly when advancing from node k to a second node a, because three edges are traced back in order to return to node R, a numerical value 3 is inserted as the numerical value element behind sequence element k.
Furthermore, all nodes included in the tree structure are searched, and after reaching the last leaf node, the search returns to root node R by tracing the edges, but because an untraversed edge does not exist, the search rises one above the root node R, depth d=0, and thus the search is complete. Therefore, (3) a positive numerical value N that corresponds to depth d=−N of the last leaf node in the entire tree structure is inserted as a sequence element (numerical value element) behind the last sequence element. For example, in the tree structure of
Note, in the serialized data processed according to the aforementioned (1) through (3), a numerical value element is inserted behind a sequence element that corresponds to a leaf node of the tree structure. In other words, the sequence element immediately preceding the numerical value element corresponds to the leaf node of the tree structure, and corresponds to a text node that is added to the leaf node. Therefore, the location that corresponds to each text node in the serialized data can be clarified by separating the serialized data for each numerical value element. Furthermore, in the present embodiment, regarding the serialized data with the inserted numerical value element as described above, (4) a separator is inserted immediately following each numerical value element other than the numerical value element added behind the last sequence element in (3). For the serialized data of the state in
In the example illustrated in
Restriction of XML Document Structure
In the tree structure of the XML document illustrated in
Therefore, in the present embodiment, if the text node is added to a node that is not a leaf node in the tree structure, the tree structure is formed such that the edge leading to the text node is located at the left side of edges leading to other nodes. In other words, if the tree structure is the one shown in
Furthermore, if a text node is added to a node that is not a leaf node as described above, (5) a numerical value 0 is inserted as the numerical value element immediately following the sequence element that corresponds to that node in the serialized data, and a separator is inserted immediately following the numerical value of 0. Performing this type of operation indicates that the text node is added to the node that corresponds to the sequence element immediately preceding the numerical value 0, which is the numerical value element separated by the separator. Furthermore, the numerical value of 0 indicates that no edge is traced back to move from that node to a subsequent node (the depth in the tree structure does not change).
Extraction of Minimal Subtree
Next, a method for extracting a minimal subtree in a range that includes a desired text node is described using the serialized data of the text and the tree structure created as described above. Herein, the minimal subtree is a tree structure (subtree) that contains two identified text nodes and has the minimum number of nodes. In the serialized data of the tree structure created as described above, information concerning the depth in the tree structure is included in each sequence element, so if the sequence elements that correspond to the nodes forming the minimal subtree is identified, the tree structure can be restored based thereon.
As a summary procedure of the present method, first, two sequence elements are identified in the serialized data of the text, and two sequence elements corresponding thereto are identified in the serialized data of the tree structure. These two sequence elements indicate a range of nodes that the minimal subtree to be extracted must include. In other words, the extraction of the minimal subtree by the present embodiment is an operation that extracts a subtree (section that is established as a tree structure) including nodes that correspond to the two sequence elements.
Next, the sequence elements that correspond to all nodes included in the minimal subtree to be extracted is identified, based on the aforementioned two sequence elements and the information concerning the depth added to each sequence element. Specifically, first, the aforementioned two sequence elements and any sequence element located between the two sequence elements are identified. Then, sequence elements that correspond to a minimum number of nodes required to be established as a tree structure, including all the nodes that correspond to the identified sequence elements, are identified. Thereby, a minimal subtree that has a minimum number of nodes is extracted from the subtrees that include nodes corresponding to the aforementioned two sequence elements. The method is described below in detail.
[1] Identification of Two Sequence Elements and Sequence Elements Between them.
First, in the present embodiment, two sequence elements in the serialized data of the text are identified. Thereupon, two sequence elements in the serialized data of the tree structure are identified based on these sequence elements that correspond thereto. Then, sequence elements that are located between these two sequence elements in the serialized data of the tree structure are identified. Thereby, sequence elements that are invariably included in the minimal subtree (tree structure) to be extracted are determined.
For example, the fifth sequence element O and the seventh sequence element Q are identified in the serialized data of the text illustrated in
[2] Identification of Sequence Elements Corresponding to Nodes of the Minimal Subtree.
Next, a sequence element string that correspond to the minimal subtree that includes all of the sequence elements are identified based on the information concerning the depth of the tree structure added to each sequence element identified in [1].
[2-1] First, depth values added to the respective sequence elements of the essential element string 701 identified in [1] are added in order from the leftmost element. Furthermore, in conjunction with the calculation of the addition value of all sequence elements, a maximum value max that is expressed in the adding operation is acquired.
In the example above, the depth values added to the sequence elements e1, bf1, and g of the essential element string illustrated in
−1+1−1−1+1−1=−2.
Furthermore, because the values obtained by adding in order from the leftmost element are:
−1+1=0
−1+1−1=−1
−1+1−1−1=−2
−1+1−1−1+1=−1
−1+1−1−1+1−1=−2,
the maximum value max is 0. The maximum value max indicates a maximum value of the height of the subtree that includes a node group that corresponds to each sequence element of the essential element string 701. Note that the maximum value max is a relative value where the depth of sequence element e on the left edge of the essential element string 701 is acquired as −1, and there is no special meaning to the value itself (value of 0 in the example above).
[2-2] Next, a sequence element for configuring the minimal subtree (for establishing as a tree structure) is added to the rear (right side) section 702 of the rightmost sequence element g of the essential element string 701. When traversing the tree structure in preorder, traversing is completed for the right section of the tree when traversing rises higher than the smallest (shallowest) node for the depth in the tree structure. Therefore, the sequence element located on the rear (right side) section 702 of sequence element g is added in order until the addition value becomes a value of one larger than the aforementioned maximum value max.
In the example above, a numerical value element (numerical value 4) exists immediately after sequence element g in the serialized data of the tree structure of
[2-3] Next, a sequence element for configuring the minimum subtree (for establishing as a tree structure) is added to the front (left side) section 703 of the leftmost sequence element e of the essential element string 701. When traversing the tree structure in preorder, traversing is starts from the top node (depth d=−1), searches all of the edges and nodes, and returns to the top node, and traversing is complete after rising higher than the top node (depth d=0). Therefore, when the value for the depth of the sequence elements of the range established as the tree structure is added, the value becomes 0.
Herein, from [2-1] and [2-2], when the value for the depth of the sequence elements included in the essential element string 701 and the value for the depth of the sequence elements included in the rear (right side) section 702 are all added, the value is (maximum value max+1). Therefore, the value that is acquired by adding the value for the depth of the sequence elements included in the front (left side) section 703 of the essential element string 701 is (maximum value max+1).
Note that if the value of (maximum value max+1) acquired from the essential element string 701 and the rear (right side) section 702 is 0, the value acquired by adding the value for the depth of the sequence elements included in the front (left side) section 703 of the essential element string 701 is also 0. Therefore, in this case, the sequence elements included in the front (left side) section 703 of the essential element string 701 are not determined.
In the example above, sequence element a exists immediately preceding sequence element e in the serialized data of the tree structure of
Thereby, the sequence elements included in the essential element string 701, rear (right side) section 702, and front (left side) section 703 are identified. In other words, identified sequence element string ae1, bf1, g3 is a sequence element string that corresponds to the minimal subtree that includes the nodes that correspond to essential element string 701 (e1, bf1, g).
Restoration of Tree Structure
Herein, the creation of the minimal subtree is possible based on the acquired sequence element string ae1, bf1, g3. The head of the sequence element string ae1, bf1, g3 is sequence element a, so node a that corresponds thereto is the top node in the minimal subtree. The next sequence element is sequence element e, so node e that corresponds thereto is a child node of node a. The next sequence element is a numerical value element (numerical value 1), so node e is a leaf node. Therefore, text node O is added to node e. Furthermore, returning one level, node b that corresponds to the next sequence element b, is the second child node of node a.
Furthermore, node f that corresponds to sequence element f that follows sequence element b is a child node of node b. Because a numerical value element (numerical value 1) follows sequence element f, node f is a leaf node, and text node P is added. Furthermore, returning one level, node g that corresponds to the next sequence element g is the second child node of node b. Because the next sequence element is a numerical value element (numerical value 3), traversing returns 3 levels from node g, and rises above node a, thus completing the tree structure.
System Configuration Example
Next, a search system for XML documents is described that applies a method for extracting the minimal subtree using the present embodiment.
The data acquiring part 11 acquires an XML document to be searched from an external device 200 for example. Furthermore, the data acquiring part 11 acquires a search request that includes a search keyword that is used in a keyword search from a terminal device 300 that is used by a user of the search system 100 for example. The external device 200 or the terminal device 300 is connected through a network for example to the search system 100.
The serializing part 12 serializes the XML document acquired by the data acquiring part 11, and processes the serialized data of the tree structure, as described while referring to
Note that rather than generating the serialized data from the XML document to be processed by the serializing part 12, the serialized data generated by separately serializing according to the present embodiment in an external device may be acquired by the data acquiring part 11 and stored in the data storing part 21. In this case, the serializing part 12 does not need to be provided in the search system 100.
The searching part 13 performs a keyword search for the XML document stored in the data storing part 21 by using a search keyword included in the search request acquired by the data acquiring part 11. The search target is the serialized data of the text. Any existing method for searching plain text can be used as the search method. Text nodes that include keywords (satisfy search conditions) are detected by the search.
The essential element string identifying part 31 identifies sequence elements of the nodes that correspond to the detected text nodes from the serialized data of the tree structure stored in the data storing part 21, based on the text nodes detected by the searching part 13. Furthermore, the sequence element string (essential element string) that contains a series of sequence elements including all of the identified sequence elements is identified. The process of the essential element string identifying part 31 is described below in detail.
Herein, a case is considered where three or more text nodes are detected by the searching part 13 (case where there are three or more text nodes that include the search keyword). In this case, any text node other than the leftmost (first) text node and the rightmost (last) text node in the serialized data from the detected text nodes is invariably included in the minimal subtree that include the leftmost and rightmost text nodes. Therefore, if three or more text nodes are detected by the searching part 13, identification of the essential element string is required based on the text nodes on both ends in the serialized data, from the detected text nodes. For example, in the serialized data of the text illustrated in
The rear (right side) section identifying part 32 identifies the rear (right side) section of the essential element string required for forming the minimal subtree, based on the essential element string identified by the essential element string identifying part 31, and the information concerning the depth added to each sequence element of the serialized data of the tree structure, as described while referring to
The front (left side) section identifying part 33 identifies the front (left side) of the essential element string required for forming the minimal subtree, based on the essential element string identified by the essential element string identifying part 31, the rear (right side) section of the essential element string identified by the rear (right side) section identifying part 32, and the information concerning the depth added to each sequence element of the serialized data of the tree structure, as described with reference to
The minimal subtree identifying part 41 identifies the sequence element string that corresponds to the minimal subtree by combining the essential element string, the sequence element string of the rear (right side) section, and the sequence element string of the front (left side) section, which are identified by the essential element identifying part 31, the rear (right side) section identifying part 32, and the front (left side) section identifying part 33, respectively.
The subdocument generating part 42 restores the tree structure of the minimal subtree based on the sequence element string that corresponds to the minimal subtree identified by the minimal subtree identifying part 41, and generates the XML document (subdocument) based on the minimal subtree, based on the tree structure and the corresponding text nodes. As described while referring to
The data outputting part 51 returns the subdocument generated by the subdocument generating part 42 as a response to the terminal device 300 that transmitted the search request. Note that in the example of the configuration illustrated in
If the node detected in block 1002 is a leaf node (Yes in block 1003), then, the serializing part 12 determines whether or not any untraversed edge exists. If an untraversed edge exists (Yes in block 1004), the number of edges that were passed when returning to a node where the untraversed edge exists is added to the serialized data as a numerical value element (block 1005). Furthermore, a separator is added immediately following the added numerical value element (block 1006). Then, the process returns to block 1001, and continues searching for a node.
If the node detected in block 1002 is not a leaf node (No in block 1003), then, the serializing part 12 determines whether or not any untraversed edge exists. If an untraversed edge exists (Yes in block 1007), the process returns to block 1001, and continues searching for a node.
If an untraversed edge does not exist (No in block 1004 or block 1007), searching for all nodes is complete, so the serializing part 12 terminates the process.
Operations of Essential Element String Identifying Part, Rear (Right Side) Section Identifying Part, and Front (Left Side) Section Identifying Part.
Next, the process for identifying the sequence element string by the essential element string identifying part 31, the rear (right side) section identifying part 32, and front (left side) section identifying part 33 is described. In the following description, the identified essential element strings are Sm through Sn (the leftmost sequence element of the essential element string in the serialized data is Sm, and the rightmost sequence element is Sn), and the depth of sequence element Sx is d(Sx). Herein, x is a variable that indicates the location of the sequence element (assuming the number of sequence elements in the serialized data is X, then, x=1˜X, and 1≦m<n≦X). It should be appreciated that the symbol “˜” generally indicates the existence of a range. The statement x=1˜X, for example, will be understood to indicate that the variable “x” is equal to a value in the range from “1” to “X.” In some cases, a pair of the symbols “˜” may alternatively be used to indicate a range. For this example, the statement “x˜1˜X” may also be used to indicate that “x” is equal to a value in the range from “1” to “X.”
First, the essential element string identifying part 31 establishes that Sx=Sm (blocks 1101 and 1102), and determines the value for the depth of S(x+1) (block 1103). Herein, the value for the depth attached to the subsequent sequence element S(x+1) is added to the value d(Sx) of the current depth. Specifically, if sequence element S(x+1) is a sequence element that corresponds to a node of the tree structure, −1 is added to the value d(Sx) of the current depth. On the other hand, if sequence element S(x+1) is a numerical value element, the value of the numerical value element is added to the value d (Sx) of the current depth.
Next, the essential element string identifying part 31 compares the maximum value dmax for the depth up to this point, and the depth d(S(x+1)) of the sequence element S(x+1). Furthermore, if d(S(x+1)) is not greater than dmax (No in block 1104), the current dmax is maintained, and if d(S(x+1)) is greater than dmax (Yes in block 1104), dmax=d(S(x+1)) (block 1105). Initially, x=m as described above, so if d(S(m+1)) is not greater than d(Sm) (No in block 1104), dmax=d(Sm). On the other hand, if d(S(m+1)) is greater than d(Sm) (Yes in block 1104), dmax=d(S(m+1)) (block 1105).
Next, the essential element string identifying part 31 replaces x+1 with x, and establishes that Sx=S(x+1) and d(Sx)=d(S(x+1)) (block 1106). The process then returns to block 1102, and the process above is repeated until Sx=Sn. Furthermore, if Sx=Sn, the process by the essential element string identifying part 31 is terminated, and processing by the rear (right side) section identifying part 32 is performed.
If d(Sx)≠dmax+1, the rear (right side) section identifying part 32 determines the value for the depth of S(x+1) similar to block 1103 of
If d(Sx)=dmax+1, then, the rear (right side) section identifying part 32 determines whether or not the value of d(Sx) is 0 (block 1204). If d(Sx)=0, the process by the front (left side) section identifying part 32 is not required, so sequence element S (n+1)˜Sp of x=n+1˜p (p: n+1≦p≦X) are identified as the sequence element string of the rear (right side) section, and the process is terminated (block 1205). On the other hand, if d(Sx)≠0, the process by the rear (right side) section identifying part 32 is terminated, and processing by the front (left side) section identifying part 33 is performed.
If d(Sx)≠−(dmax+1), the front (left side) section identifying part 33 determines the value for the depth of sequence element S(x−1) (block 1303). Herein, the value for the depth that is attached to the preceding sequence element S(x−1) is added to value d(Sx) of the current depth. Specifically, if sequence element S(x−1) is a sequence element that corresponds to a node of the tree structure, −1 is added to the value d(Sx) of the current depth. On the other hand, if sequence element S(x+1) is a numerical value element, the value of the numerical value element is added to the value d(Sx) of the current depth.
Furthermore, the front (left side) section identifying part 33 replaces x−1 with x, and establishes that Sx=S(x−1) and d(Sx)=d(S(x−1)) (block 1304). The process then returns to block 1302, and the aforementioned processing is repeated until d(Sx)=−dmax+1. If d(Sx)=−(dmax+1), sequence elements Sq˜S(m−1) of x=q˜m−1 (q: 1≦q≦m−1) are identified as the sequence element string of the front (left side) section, and the process is terminated.
Therefore, essential element string Sm˜Sn, sequence element string S(n+1)˜Sp of the rear (right side) section, and sequence element string Sq˜S(m−1) of the front (left side) section were obtained. The minimal subtree identifying part 41 identifies sequence element string Sq˜Sp(Sq˜S(m−1), Sm˜Sn, S(n+1)˜Sp) corresponding to the minimal subtree by combining these sequence element strings.
Note that the operation of the aforementioned essential element string identifying part 31, rear (right side) section identifying part 32, and front (left side) section identifying part 33 is only an example, and is not limited to the aforementioned processing procedure. For example, the information concerning the depth of each sequence element of the essential element string and the maximum value thereof is required in the process of the rear (right side) section identifying part 32, so the rear (right side) section identifying part 32 may perform the calculation. In addition, embodiments of the invention may vary form the specific processes and procedures described below.
Hardware Configuration Example
In the example of the configuration illustrated in
Note that
In
Application Example
The search system of the present embodiment is not restricted to the one for the XML document in the aforementioned description, can be applied widely to process other structured documents (data) with a tree structure to extract a minimal subtree that includes a number of identified nodes in the tree structure and generate a subdocument.
Furthermore, in the aforementioned embodiment, first the search system targets processing of the XML document, identifies text nodes as nodes that form a minimal subtree, and then identifies nodes (mainly leaf nodes) of the tree structure that corresponds thereto. However, the search system of the present embodiment generally can be achieved as a system that extracts a minimal subtree that includes a number of identified nodes from data with a tree structure.
Furthermore, the present embodiment can be applied when detecting a lowest common ancestor node for a number of identified nodes in a tree structure, in the various data with tree structures. For example, if the present embodiment is applied to a file system that hierarchically manages data files, the bottom folder can be found from common folders including a number of files identified by given conditions.
Number | Date | Country | Kind |
---|---|---|---|
2012-204803 | Sep 2012 | JP | national |
Number | Name | Date | Kind |
---|---|---|---|
8316060 | Snyder, II | Nov 2012 | B1 |
20020065822 | Itani | May 2002 | A1 |
20060206595 | Zarzycki | Sep 2006 | A1 |
20080215520 | Gu | Sep 2008 | A1 |
20100082664 | Odaira | Apr 2010 | A1 |
20130086127 | Pogmore | Apr 2013 | A1 |
Number | Date | Country |
---|---|---|
2002073589 | Mar 2002 | JP |
2008305124 | Dec 2008 | JP |
Entry |
---|
Miki, Takeshi, et al.; “Indexing Methods to Extract MCTs from and XML Document Containing Search Keywords”; DEWS; p. 1-6; 2007; with English language abstract. |
Number | Date | Country | |
---|---|---|---|
20140172897 A1 | Jun 2014 | US |