Skip to content

Instantly share code, notes, and snippets.

@travishen
Created December 4, 2018 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travishen/295ff80289bf54869d9842d285faa1a5 to your computer and use it in GitHub Desktop.
Save travishen/295ff80289bf54869d9842d285faa1a5 to your computer and use it in GitHub Desktop.
built-in heapq
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"from heapq import heappop, heappush, heapify\n",
"\n",
"heap = []\n",
"nums = [12, 3, -5, 3, 6, 11]"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[-5, 3, 3, 12, 6, 11]"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"for n in nums:\n",
" heappush(heap, n)\n",
" \n",
"heapify(heap)\n",
"\n",
"heap"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"-5\n",
"3\n",
"3\n",
"6\n",
"11\n",
"12\n"
]
}
],
"source": [
"while heap:\n",
" print(heappop(heap))"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment