1 / 4

Đề kiểm tra 15’ lớp K58B

Đề kiểm tra 15’ lớp K58B. Cho đồ thị không gian trạng thái của bài toán như sau:. Trạng thái đầu: A Trạng thái đích: P. Và cho giải thuật tìm kiếm theo chiều sâu trong slide tiếp theo. Tìm kiếm lời giải theo chiều sâu.

thisbe
Download Presentation

Đề kiểm tra 15’ lớp K58B

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Đề kiểm tra 15’ lớp K58B Cho đồ thị không gian trạng thái của bài toán như sau: Trạng thái đầu: A Trạng thái đích: P Và cho giải thuật tìm kiếm theo chiều sâu trong slide tiếp theo

  2. Tìm kiếm lời giải theo chiều sâu Function General-Search(problem, Stack) returns a solution, or failure Stack  make-queue(make-node(initial-state[problem])); father(initial-state[problem]) = empty; while (1) if Stack is empty then return failure; node = pop(Stack) ; if test(node,Goal[problem]) then return path(node,father); expand-nodes adjacent-nodes(node, Operators[problem]); push(Stack, expand-nodes ); for each ex-node in expand-nodes father(ex-node) = node; end Lấy các đỉnh kề với node, nhưng chưa xuất hiện trong cây tìm kiếm Function path(node,father[]) : print the solution n  node while (n # empty) cout<< n <<“<--” ; n = father[n]; end

  3. Đề kiểm tra lớp K58B • Hãychobiếtkếtquảthựchiệngiảithuậttheochiềusâutrênkhônggiantrạngtháibàitoánđãcho • Hãychobiết Stack chứacácđỉnhnàocủađồthị ở thờiđiểmkếtthúcgiảithuật • Hãyđánhgiáđộphứctạpkhônggiancủagiảithuậttìmkiếmtheochiềusâudựatrên 2 thamsố: b - sốnhánhtốiđacủamộtđỉnhtrongkhônggiantrạngtháicủabàitoán, vàm – độsâutốiđacủakhônggiantrạngtháicủabàitoán

  4. Đáp án • Kếtquảthựchiệncủagiảithuật: P <-- I <-- E <-- B <-- A • Ở thờiđiểmkếtthúcgiảithuật, Stack chứa P,F,C,D • Độphứctạpkhônggiancủagiảithuậtđượcđánhgiádựatrênkíchthướccủa Stack, trongtrườnghợptồinhất, Stack chứabm((b-1) * m) + 1 đỉnh, vìvậyđộphứctạpkhônggianlàcỡ O(bmb*m); xemtrong slide 56 bai un_informed_search.ppt

More Related