알고리즘 파트 5: 원하는 만큼 이진수 생성
Java 언어와 대기열 데이터 구조를 사용하겠습니다.
해결책
public String[] generateBinary(int n){
String[] result=new String[n];
Queue<String> queue=new LinkedList<>();
queue.offer("1");
for(int i=0;i<n;i++){
String poll=queue.poll();
String n1=poll+"0";
String n2=poll+"1";
result[i]=poll;
queue.offer(n1);
queue.offer(n2);
}
return result;
}
이것이 도움이 되길 바랍니다. 감사합니다 ❤.
Reference
이 문제에 관하여(알고리즘 파트 5: 원하는 만큼 이진수 생성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sadiul_hakim/algorithm-part-5-generate-as-many-binary-number-as-you-want-558d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)