Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2f84f03

Browse files
authored
organize files and remove calculator & iterables (keon#623)
1 parent29b310d commit2f84f03

File tree

9 files changed

+13
-1061
lines changed

9 files changed

+13
-1061
lines changed

‎README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ If you want to uninstall algorithms, it is as simple as:
113113
-[insert_bit](algorithms/bit/insert_bit.py)
114114
-[remove_bit](algorithms/bit/remove_bit.py)
115115
-[binary_gap](algorithms/bit/binary_gap.py)
116-
-[calculator](algorithms/calculator)
117-
-[math_parser](algorithms/calculator/math_parser.py)
118116
-[compression](algorithms/compression)
119117
-[huffman_coding](algorithms/compression/huffman_coding.py)
120118
-[rle_compression](algorithms/compression/rle_compression.py)
@@ -172,8 +170,6 @@ If you want to uninstall algorithms, it is as simple as:
172170
-[skyline](algorithms/heap/skyline.py)
173171
-[sliding_window_max](algorithms/heap/sliding_window_max.py)
174172
-[binary_heap](algorithms/heap/binary_heap.py)
175-
-[iterables](algorithms/iterables)
176-
-[convolved](algorithms/iterables/convolved.py)
177173
-[k_closest_points](algorithms/heap/k_closest_points.py)
178174
-[linkedlist](algorithms/linkedlist)
179175
-[add_two_numbers](algorithms/linkedlist/add_two_numbers.py)
@@ -387,8 +383,8 @@ If you want to uninstall algorithms, it is as simple as:
387383
-[full_path](algorithms/unix/path/full_path.py)
388384
-[split](algorithms/unix/path/split.py)
389385
-[simplify_path](algorithms/unix/path/simplify_path.py)
390-
-[union-find](algorithms/union-find)
391-
-[count_islands](algorithms/union-find/count_islands.py)
386+
-[unionfind](algorithms/unionfind)
387+
-[count_islands](algorithms/unionfind/count_islands.py)
392388

393389

394390
##Contributors

‎algorithms/calculator/math_parser.py

Lines changed: 0 additions & 149 deletions
This file was deleted.

‎algorithms/graph/Transitive_Closure_DFS.pyrenamed to‎algorithms/graph/transitive_closure_dfs.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ def transitive_closure(self):
4040
print(self.tc)
4141

4242

43-
g=Graph(4)
44-
g.add_edge(0,1)
45-
g.add_edge(0,2)
46-
g.add_edge(1,2)
47-
g.add_edge(2,0)
48-
g.add_edge(2,3)
49-
g.add_edge(3,3)
50-
51-
print("Transitive closure matrix is")
52-
g.transitive_closure()
43+
#g = Graph(4)
44+
#g.add_edge(0, 1)
45+
#g.add_edge(0, 2)
46+
#g.add_edge(1, 2)
47+
#g.add_edge(2, 0)
48+
#g.add_edge(2, 3)
49+
#g.add_edge(3, 3)
50+
51+
#print("Transitive closure matrix is")
52+
#g.transitive_closure()

‎algorithms/iterables/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

‎algorithms/iterables/convolved.py

Lines changed: 0 additions & 154 deletions
This file was deleted.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp