의견 보내기
Java 변경 로그 생성
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Java 코드의 diff 파일을 기반으로 간결한 코드 변경 로그 항목을 생성합니다.
모델을 직접 쿼리하고 Cloud 콘솔에서 다른 매개변수 값을 사용하거나 Vertex AI API를 직접 호출하여 반환된 결과를 테스트할 수 있습니다.
이 커밋의 키 코드 변경을 요약하는 간결한 한 줄 변경 로그 항목을 추출합니다.
--- /your/code/directory/tree_traversal.java
+++ //your/code/directory/tree_traversal.java
class Node {
int data;
Node left, right;
public Node(int data) {
this.data = data;
left = right = null;
}
}
public class TreeTraversal {
Node root;
- // Recursive Traversal Methods
- public void preorderRecursive(Node node) {
- if (node != null) {
- System.out.print(node.data + " ");
- preorderRecursive(node.left);
- preorderRecursive(node.right);
- }
- }
+ // Iterative Traversal Methods (Using a Stack)
+ public void preorderIterative(Node node) {
+ if (node == null) {
+ return;
+ }
+ Stack stack = new Stack<>();
+ stack.push(node);
+
+ while (!stack.isEmpty()) {
+ Node current = stack.pop();
+ System.out.print(current.data + " ");
+
+ // Push right child first (changes order compared to recursive)
+ if (current.right != null) {
+ stack.push(current.right);
+ }
+ if (current.left != null) {
+ stack.push(current.left);
+ }
+ }
+ }
}
응답
Refactor(Traversal): 스택을 사용하여 선주문 순회를 재귀적에서 반복적 접근 방식으로 전환합니다.
모델:
gemini-1.5-pro-preview-0409
강도:
1
최대 출력 토큰:
8192
최상위 K:
40
최상위 P:
0.95
의견 보내기
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스 에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스 에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책 을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-05-07(UTC)
의견을 전달하고 싶나요?
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2024-05-07(UTC)"],[],[]]