«search-algorithms» 태그된 질문

특정 데이터 구조 (가장 일반적으로 트리에서)에서 요소를 찾기위한 알고리즘입니다.

2
주어진 시퀀스에서 O (k) 메모리 O (n) 시간만으로 k 번째로 작은 요소 찾기
시퀀스를 하나씩 읽습니다 . 셀 메모리를 사용하고 선형 시간 ( ) 을 사용하여 번째로 작은 요소 를 찾는 방법 . 나는 우리가 먼저 저장해야한다고 생각 시퀀스의 조건과 얻을 때 번째의 용어를, 우리가 확실히는 될 수없는 용어 삭제 번째 작은 요소 다음 저장 ' 번째의 용어. 따라서 각 단계에서 사용할 수없는 …

1
프로세서를 사용하여 최대
우리는 n 2 컴퓨터 와 시간 복잡성 에서 병렬로 배열의 최대 값을 찾기위한 알고리즘을 수업에서 발표했습니다 .O ( 1 )O(1)O(1)n2n2n^2 알고리즘은 다음과 같습니다. 길이 n의 배열 A가 주어진 경우 : 길이가 n 인 플래그 배열 B를 만들고 컴퓨터 에서 0으로 초기화하십시오 .nnn 2 개의 요소를 모두 비교하고 대의 컴퓨터 에서 …

1
지시 된 노동 조합 찾기
동적으로 에지를 추가하고 특정 쿼리를 수행 할 수 있는 유 방향 그래프 GGG 를 고려하십시오 . 예 : 분리 된 포리스트 다음 쿼리 세트를 고려하십시오. arrow(u, v) equiv(u, v) find(u) 첫 번째는 화살표 추가 u→vu→vu→v 경우 그래프, 두번째는 결정 u↔∗vu↔∗vu↔^*v , 마지막 하나의 등가 클래스의 정규 대표 발견 ↔∗↔∗↔^* , …

1
구체화 유형 추론
직장에서 나는 동적 언어에 대한 몇 가지 유형 정보를 유추하는 임무를 맡았습니다. 다음 let과 같이 일련의 명령문을 중첩 된 표현식 으로 다시 작성합니다 . return x; Z => x var x; Z => let x = undefined in Z x = y; Z => let x = y in Z …
11 programming-languages  logic  type-theory  type-inference  machine-learning  data-mining  clustering  order-theory  reference-request  information-theory  entropy  algorithms  algorithm-analysis  space-complexity  lower-bounds  formal-languages  computability  formal-grammars  context-free  parsing  complexity-theory  time-complexity  terminology  turing-machines  nondeterminism  programming-languages  semantics  operational-semantics  complexity-theory  time-complexity  complexity-theory  reference-request  turing-machines  machine-models  simulation  graphs  probability-theory  data-structures  terminology  distributed-systems  hash-tables  history  terminology  programming-languages  meta-programming  terminology  formal-grammars  compilers  algorithms  search-algorithms  formal-languages  regular-languages  complexity-theory  satisfiability  sat-solvers  factoring  algorithms  randomized-algorithms  streaming-algorithm  in-place  algorithms  numerical-analysis  regular-languages  automata  finite-automata  regular-expressions  algorithms  data-structures  efficiency  coding-theory  algorithms  graph-theory  reference-request  education  books  formal-languages  context-free  proof-techniques  algorithms  graph-theory  greedy-algorithms  matroids  complexity-theory  graph-theory  np-complete  intuition  complexity-theory  np-complete  traveling-salesman  algorithms  graphs  probabilistic-algorithms  weighted-graphs  data-structures  time-complexity  priority-queues  computability  turing-machines  automata  pushdown-automata  algorithms  graphs  binary-trees  algorithms  algorithm-analysis  spanning-trees  terminology  asymptotics  landau-notation  algorithms  graph-theory  network-flow  terminology  computability  undecidability  rice-theorem  algorithms  data-structures  computational-geometry 

2
시간 및 공간 에서 특정 수 결정 (최악의 경우)
\newcommand\ldotd{\mathinner{..}} 감안할 A[1..n]A[1..n]A[1\ldotd n] 정수가되도록 0≤A[k]≤m0≤A[k]≤m0\le A[k]\le m 모두 1≤k≤n1≤k≤n1\le k\le n , 각각의 발생 A [1 \ ldotd n] 에서 특정 숫자를 제외한 숫자 A[1..n]A[1..n]A[1\ldotd n]는 홀수입니다. 발생 수가 짝수 인 숫자를 찾으십시오. 있다 Θ(nlogn)Θ(nlog⁡n)\Theta(n\log n) 알고리즘 : 우리 정렬 A[1..n]A[1..n]A[1\ldotd n] 에 B[1..n]B[1..n]B[1\ldotd n] 및 브레이크 B[1..n]B[1..n]B[1\ldotd n] …

1
너비 우선 검색이 제 시간에 실행되는 이유
그래프 에서 너비 우선 탐색 (BFS)의 실행 시간 이 라고 종종 언급됩니다 (예 : Wikipedia . 그러나 연결된 그래프에는 있으며 연결되지 않은 그래프에서도 BFS는 시작 정점을 포함하는 구성 요소 외부의 정점을 절대로 보지 않습니다. 해당 구성 요소에는 최대 모서리를 포함하므로 최대 정점이 포함되며 알고리즘이 방문 할 유일한 정점입니다.G = ( …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.