A: まずは簡単な面接の質問を見てみましょう
フィボナッチ数列
ルール: 1 1 開始3 番目の項目以降、各項目は前の 2 つの項目の合計になります
実装するには 2 つの方法があります
1 つ目の方法:
TestSelf((n<0 IllegalArgumentException("n不能为负数" (n<=2 1 TestSelf(n-2)+TestSelf(n-1 30
2 つ目の方法: 配列を使用する
public int TestSelfTwo(int n){ if(n<0){ throw new IllegalArgumentException("n不能为负数"); }else if(n<=1){ //递归前两个数 不管n是多少 为一 return 1; } int[] nums = new int[n+1]; //30位从零开始 nums[0]=1; nums[1]=1; for (int i =2;i<n;i++){ nums[i] = nums[i-2]+nums[i-1]; } return nums[n-1]; } @Test public void Test(){ System.out.println(TestSelfTwo(30)); }
式: f(n) = f(n-2)+f(n-1) f はメソッド n で表されるビット数を表します
B: MyBatis で n レベルのリンケージを実装するには再帰を使用します
SQL ステートメント: select * from type where pid = 0; 最初に pid 値を 0 として指定し、次のクエリの pid として pid が 0 の cid を使用します
public List<Category> getCategory(Integer pid); //接口层方法
<mapper namespace="dao.CateGoryDao"><resultMap id="getSelf" type="entity.Category"><id column="cid" property="cid"></id><result column="cname" property="cName"></result><collection property="categorySet" select="getCategory" column="cid"></collection> //这里可以不用指定oftype 使用反向查询select从另一个maper文件中取出数据时必须用ofType<!--查到的cid作为下次的pid--></resultMap><select id="getCategory" resultMap="getSelf" >select * from category where pid=#{pid}</select></mapper>
の違いは、逆クエリ選択を使用して別のマパー ファイルからデータを取得する場合、ofType を使用する必要があることです
両方とも使用できます。オブジェクトのタイプを指定します。
は記述する必要はありません。逆選択には ofType のみが必要です。
エンティティ クラス:
package entity;import java.util.HashSet;import java.util.Set;/** * Created by zhangyu on 2017/7/12. */public class Category {private Integer cid;private String cName;private Integer pid;private Set<Category> categorySet = new HashSet<Category>(); @Overridepublic String toString() {return "Category{" + "cid=" + cid + ", cName='" + cName + '\'' + ", pid=" + pid + ", categorySet=" + categorySet + '}'; }public Integer getCid() {return cid; }public void setCid(Integer cid) {this.cid = cid; }public String getcName() {return cName; }public void setcName(String cName) {this.cName = cName; }public Integer getPid() {return pid; }public void setPid(Integer pid) {this.pid = pid; }public Set<Category> getCategorySet() {return categorySet; }public void setCategorySet(Set<Category> categorySet) {this.categorySet = categorySet; } }
印刷結果:
//测试自连接 @Testpublic void TestSelf(){ CateGoryDao dao = MyBatis.getSessionTwo().getMapper(CateGoryDao.class); List<Category> list = dao.getCategory(0);for (Category item:list ) { System.out.println(item); } }
以上がMyBatis は自己クエリを実行し、再帰を使用して N レベルのリンケージを実装します。の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。