Evelynone

A straw shows which way the wind blows.


  • Home

  • About

  • Tags17

  • Archives23

  • Search

DFS III

Posted on 10-21-2019 | Edited on 03-08-2020 |

The main characteristics of DFS is going back to where it is from (Back Tracking).
What should be kept in mind is how many times it excuted, and what is the status of each execution.

Article Language: English
Example Language: Java
Reading Time: 5min

Read more »

DFS IV

Posted on 10-21-2019 | Edited on 03-08-2020 |

More about dfs.

Article Language: English
Example Language: Java
Reading Time: 7min

Read more »

DFS I

Posted on 10-21-2019 | Edited on 03-08-2020 |

Depth First Search is a searching algorithm based on tree or graph. Essentially, it starts from a root node, traverse each child node. It is a root node for each child node. And find the result while traversing all possible branches/nodes.

Article Language: Chinese
Example Language: Java
Reading Time: 12min

Read more »

DFS II

Posted on 10-21-2019 | Edited on 03-08-2020 |

专注 dfs 20 年, 粗略的说一说基于 subset 的 🌰.

Article Language: Chinese
Example Language: Java
Reading Time: 17min

Read more »

生日

Posted on 05-04-2018 | Edited on 10-21-2019 |

Read more »

Emoji

Posted on 04-25-2018 | Edited on 03-08-2020 | In Other |

最近、私は絵文字に耽っていてかわいいと面白い絵文字をたくさん見つけましたが、実際は言葉や記号で表現された表現なので、「mojie」と呼ぶ方が適切かどうかはわかりませんでしょう。(ˊo̴̶̷̤⌄o̴̶̷̤ˋ)
私はね、実際は、長い間日本語を使いませんでした。これらの文章を書いたこと、多くの辞書をチェックしましたが、文法上の問題はまだあると思います。
まあぁ、いい。それじゃあ〜

Article Language: Not an article
Example Language: Emoji

Read more »

Practice 280

Posted on 05-18-2017 | Edited on 03-08-2020 |

1

Read more »

Dynamic Programming

Posted on 05-10-2017 | Edited on 03-08-2020 |

In computer science, mathematics, management science, economics and bioinformatics, dynamic programming (also known as dynamic optimization) is a method for solving a complex problem by breaking it down into a collection of simpler subproblems, solving each of those subproblems just once, and storing their solutions.1

Article Language: English
Exmaple Language: Java
Reading Time: 3min

Read more »

Data Structure VII Heap&PriorityQueue

Posted on 05-08-2017 | Edited on 03-08-2020 |

Heap is a tree-like data structure. Every node must satisfy the heap property (max/min/etc). In java, heap is implemented as PriorityQueue<>(size, Comparator). Due to this property, the time complexity of insertion and deletion are both O(logn).

Article Language: English
Example Language: Java
Reading Time: 11min

Read more »

Data Structure IV Queue

Posted on 05-05-2017 | Edited on 03-08-2020 | In Data Structure |

A first in First out(FIFO) linear data structure. It allows insertion from onside and deletion from the other. Peek represents the first element added into the queue. Use to deal with process that has to be executed in a line.

Article Language: English
Example Language: Java
Reading Time: 2min

Read more »
123
Evelyn

Evelyn

Do more; know more; be more.

23 posts
6 categories
17 tags
© 2020 Evelyn