คำถามติดแท็ก tree-traversal

4
ความกว้างแรกและความลึกก่อน
เมื่อทำการสำรวจต้นไม้ / กราฟความแตกต่างระหว่างความกว้างก่อนและระยะลึกก่อนคืออะไร ตัวอย่างการเข้ารหัสหรือรหัสเทียมใด ๆ จะดีมาก

5
jquery ค้นหาพี่น้องที่ใกล้เคียงที่สุดก่อนหน้านี้กับชั้นเรียน
นี่คือ html คร่าวๆที่ฉันได้ทำงานกับ: <li class="par_cat"></li> <li class="sub_cat"></li> <li class="sub_cat"></li> <li class="par_cat"></li> // this is the single element I need to select <li class="sub_cat"></li> <li class="sub_cat"></li> <li class="sub_cat current_sub"></li> // this is where I need to start searching <li class="par_cat"></li> <li class="sub_cat"></li> <li class="par_cat"></li> ฉันต้องการข้ามจาก.current_subหาสิ่งที่ใกล้เคียงที่สุดก่อนหน้านี้.par_catและทำสิ่งต่าง ๆ กับมัน .find("li.par_cat")ส่งคืนภาระทั้งหมดของ.par_cat(ฉันมีประมาณ 30 ในหน้า) ฉันต้องการเป้าหมายเดี่ยว …

8
อธิบายการข้ามต้นไม้ตามลำดับของมอร์ริสโดยไม่ต้องใช้สแต็คหรือการเรียกซ้ำ
ใครช่วยกรุณาช่วยฉันทำความเข้าใจอัลกอริทึมการเดินทางข้ามต้นไม้ตามลำดับมอร์ริสต่อไปนี้โดยไม่ต้องใช้สแต็กหรือการเรียกซ้ำ ฉันพยายามเข้าใจว่ามันทำงานอย่างไร แต่มันก็หนีฉันไป 1. Initialize current as root 2. While current is not NULL If current does not have left child a. Print current’s data b. Go to the right, i.e., current = current->right Else a. In current's left subtree, make current the right child of the rightmost node b. …

19
ฉันจะรับตัวเลือกจากวัตถุ jQuery ได้อย่างไร
$("*").click(function(){ $(this); // how can I get selector from $(this) ? }); มีวิธีง่ายๆในการรับตัวเลือก$(this)หรือไม่? มีวิธีการเลือกองค์ประกอบโดยตัวเลือก แต่สิ่งที่เกี่ยวกับการเลือกจากองค์ประกอบ ?

1
Python: เกินความลึกของการเรียกซ้ำสูงสุด
ฉันมีรหัสการเรียกซ้ำต่อไปนี้ในแต่ละโหนดฉันเรียกแบบสอบถาม sql เพื่อให้โหนดเป็นของโหนดหลัก นี่คือข้อผิดพลาด: Exception RuntimeError: 'maximum recursion depth exceeded' in <bound method DictCursor.__del__ of <MySQLdb.cursors.DictCursor object at 0x879768c>> ignored RuntimeError: maximum recursion depth exceeded while calling a Python object Exception AttributeError: "'DictCursor' object has no attribute 'connection'" in <bound method DictCursor.__del__ of <MySQLdb.cursors.DictCursor object at 0x879776c>> ignored วิธีที่ฉันเรียกเพื่อรับผลลัพธ์ sql: …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.