Documentation for 136dee84e7

This commit is contained in:
github-actions 2022-11-17 18:24:50 +00:00
parent f82e8d3afd
commit 68b0e91088
92 changed files with 2385 additions and 668 deletions

View File

@ -393,7 +393,7 @@ Here is the call graph for this function:</div>
<div class="fragment"><div class="line"><span class="lineno"> 92</span>{</div>
<div class="line"><span class="lineno"> 93</span> <span class="comment">// Creating a temporary linked list to store the resultant polynomial</span></div>
<div class="line"><span class="lineno"> 94</span> <span class="keyword">struct </span><a class="code hl_struct" href="../../df/d86/structterm.html">term</a> *temp = (<span class="keyword">struct </span><a class="code hl_struct" href="../../df/d86/structterm.html">term</a> *)<a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc</a>(<span class="keyword">sizeof</span>(<span class="keyword">struct</span> <a class="code hl_struct" href="../../df/d86/structterm.html">term</a>));</div>
<div class="line"><span class="lineno"> 95</span> temp-&gt;next = NULL;</div>
<div class="line"><span class="lineno"> 95</span> temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = NULL;</div>
<div class="line"><span class="lineno"> 96</span> *pol =</div>
<div class="line"><span class="lineno"> 97</span> temp; <span class="comment">//*pol always points to the 1st node of the resultant polynomial</span></div>
<div class="line"><span class="lineno"> 98</span> </div>
@ -437,10 +437,10 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 136</span><span class="comment"> */</span></div>
<div class="line"><span class="lineno"> 137</span> <span class="keywordflow">if</span> (poly1 &amp;&amp; poly2)</div>
<div class="line"><span class="lineno"> 138</span> {</div>
<div class="line"><span class="lineno"> 139</span> temp-&gt;next = (<span class="keyword">struct </span><a class="code hl_struct" href="../../df/d86/structterm.html">term</a> *)<a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc</a>(</div>
<div class="line"><span class="lineno"> 139</span> temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = (<span class="keyword">struct </span><a class="code hl_struct" href="../../df/d86/structterm.html">term</a> *)<a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc</a>(</div>
<div class="line"><span class="lineno"> 140</span> <span class="keyword">sizeof</span>(<span class="keyword">struct</span> <a class="code hl_struct" href="../../df/d86/structterm.html">term</a>)); <span class="comment">// Dynamic node creation</span></div>
<div class="line"><span class="lineno"> 141</span> temp = temp-&gt;next; <span class="comment">// Increase the pointer temp</span></div>
<div class="line"><span class="lineno"> 142</span> temp-&gt;next = NULL;</div>
<div class="line"><span class="lineno"> 141</span> temp = temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>; <span class="comment">// Increase the pointer temp</span></div>
<div class="line"><span class="lineno"> 142</span> temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = NULL;</div>
<div class="line"><span class="lineno"> 143</span> }</div>
<div class="line"><span class="lineno"> 144</span> }</div>
<div class="line"><span class="lineno"> 145</span> <span class="comment">/* If one of the polynomials is exhausted</span></div>
@ -449,10 +449,10 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 148</span><span class="comment"> */</span></div>
<div class="line"><span class="lineno"> 149</span> <span class="keywordflow">while</span> (poly1 || poly2)</div>
<div class="line"><span class="lineno"> 150</span> {</div>
<div class="line"><span class="lineno"> 151</span> temp-&gt;next = (<span class="keyword">struct </span><a class="code hl_struct" href="../../df/d86/structterm.html">term</a> *)<a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc</a>(</div>
<div class="line"><span class="lineno"> 151</span> temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = (<span class="keyword">struct </span><a class="code hl_struct" href="../../df/d86/structterm.html">term</a> *)<a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc</a>(</div>
<div class="line"><span class="lineno"> 152</span> <span class="keyword">sizeof</span>(<span class="keyword">struct</span> <a class="code hl_struct" href="../../df/d86/structterm.html">term</a>)); <span class="comment">// Dynamic node creation</span></div>
<div class="line"><span class="lineno"> 153</span> temp = temp-&gt;next; <span class="comment">// Increasing the pointer</span></div>
<div class="line"><span class="lineno"> 154</span> temp-&gt;next = NULL;</div>
<div class="line"><span class="lineno"> 153</span> temp = temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>; <span class="comment">// Increasing the pointer</span></div>
<div class="line"><span class="lineno"> 154</span> temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = NULL;</div>
<div class="line"><span class="lineno"> 155</span> </div>
<div class="line"><span class="lineno"> 156</span> <span class="comment">/* If poly1 is not exhausted</span></div>
<div class="line"><span class="lineno"> 157</span><span class="comment"> place rest of that polynomial in temp</span></div>
@ -474,6 +474,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 173</span> }</div>
<div class="line"><span class="lineno"> 174</span> }</div>
<div class="line"><span class="lineno"> 175</span>}</div>
<div class="ttc" id="astructnode_html_a111a569ab2765add9b91c9f94cf9f063"><div class="ttname"><a href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node::next</a></div><div class="ttdeci">struct node * next</div><div class="ttdoc">pointer to the node</div><div class="ttdef"><b>Definition:</b> bfs.c:24</div></div>
</div><!-- fragment -->
</div>
</div>

View File

@ -115,7 +115,7 @@ $(document).ready(function(){initNavTree('d1/dbe/include_8h_source.html','../../
<div class="line"><a id="l00013" name="l00013"></a><span class="lineno"> 13</span><span class="keyword">struct </span><a class="code hl_struct" href="../../d5/da1/structnode.html">node</a></div>
<div class="line"><a id="l00014" name="l00014"></a><span class="lineno"> 14</span>{</div>
<div class="line"><a id="l00015" name="l00015"></a><span class="lineno"> 15</span> <span class="keywordtype">int</span> <a class="code hl_variable" href="../../d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2">data</a>;</div>
<div class="line"><a id="l00016" name="l00016"></a><span class="lineno"> 16</span> <span class="keyword">struct </span><a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *<a class="code hl_function" href="../../df/dfa/vector_8c.html#af2f92e8cc55e764980bc0573ab5cd06f">next</a>;</div>
<div class="line"><a id="l00016" name="l00016"></a><span class="lineno"> 16</span> <span class="keyword">struct </span><a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><a id="l00017" name="l00017"></a><span class="lineno"> 17</span> <span class="keyword">struct </span><a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *pre;</div>
<div class="line"><a id="l00018" name="l00018"></a><span class="lineno"> 18</span>} * head, *tail, *tmp;</div>
<div class="line"><a id="l00019" name="l00019"></a><span class="lineno"> 19</span><span class="comment"></span> </div>
@ -130,8 +130,8 @@ $(document).ready(function(){initNavTree('d1/dbe/include_8h_source.html','../../
<div class="line"><a id="l00028" name="l00028"></a><span class="lineno"> 28</span><span class="keywordtype">int</span> <a class="code hl_function" href="../../da/d96/infix__to__postfix2_8c.html#a653c98c68c558505b75b04c44b7c838e">isEmpty</a>();</div>
<div class="ttc" id="ainfix__to__postfix2_8c_html_a653c98c68c558505b75b04c44b7c838e"><div class="ttname"><a href="../../da/d96/infix__to__postfix2_8c.html#a653c98c68c558505b75b04c44b7c838e">isEmpty</a></div><div class="ttdeci">uint16_t isEmpty()</div><div class="ttdoc">Function to check whether the stack is empty or not.</div><div class="ttdef"><b>Definition:</b> infix_to_postfix2.c:61</div></div>
<div class="ttc" id="astructnode_html"><div class="ttname"><a href="../../d5/da1/structnode.html">node</a></div><div class="ttdoc">Node, the basic data structure in the tree.</div><div class="ttdef"><b>Definition:</b> binary_search_tree.c:15</div></div>
<div class="ttc" id="astructnode_html_a111a569ab2765add9b91c9f94cf9f063"><div class="ttname"><a href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node::next</a></div><div class="ttdeci">struct node * next</div><div class="ttdoc">pointer to the node</div><div class="ttdef"><b>Definition:</b> bfs.c:24</div></div>
<div class="ttc" id="astructnode_html_a2d890bb9f6af0ffd73fe79b21124c2a2"><div class="ttname"><a href="../../d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2">node::data</a></div><div class="ttdeci">int data</div><div class="ttdoc">data of the node</div><div class="ttdef"><b>Definition:</b> binary_search_tree.c:18</div></div>
<div class="ttc" id="avector_8c_html_af2f92e8cc55e764980bc0573ab5cd06f"><div class="ttname"><a href="../../df/dfa/vector_8c.html#af2f92e8cc55e764980bc0573ab5cd06f">next</a></div><div class="ttdeci">int next(Vector *vec)</div><div class="ttdoc">This function gets the next item from the Vector each time it's called.</div><div class="ttdef"><b>Definition:</b> vector.c:102</div></div>
</div><!-- fragment --></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->

View File

@ -0,0 +1,869 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.9.5"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Algorithms_in_C: process_scheduling_algorithms/non_preemptive_priority_scheduling.c File Reference</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../jquery.js"></script>
<script type="text/javascript" src="../../dynsections.js"></script>
<link href="../../navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../resize.js"></script>
<script type="text/javascript" src="../../navtreedata.js"></script>
<script type="text/javascript" src="../../navtree.js"></script>
<link href="../../search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="../../search/searchdata.js"></script>
<script type="text/javascript" src="../../search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js", "TeX/AMSmath.js", "TeX/AMSsymbols.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script>
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML/MathJax.js"></script>
<link href="../../doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr id="projectrow">
<td id="projectalign">
<div id="projectname">Algorithms_in_C<span id="projectnumber">&#160;1.0.0</span>
</div>
<div id="projectbrief">Set of algorithms implemented in C.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.5 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "../../search/",'.html');
/* @license-end */
</script>
<script type="text/javascript" src="../../menudata.js"></script>
<script type="text/javascript" src="../../menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(function() {
initMenu('../../',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(document).ready(function(){initNavTree('d2/d87/non__preemptive__priority__scheduling_8c.html','../../'); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<div id="MSearchResults">
<div class="SRPage">
<div id="SRIndex">
<div id="SRResults"></div>
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
</div>
</div>
</div>
</div>
<div class="header">
<div class="summary">
<a href="#nested-classes">Data Structures</a> &#124;
<a href="#typedef-members">Typedefs</a> &#124;
<a href="#func-members">Functions</a> </div>
<div class="headertitle"><div class="title">non_preemptive_priority_scheduling.c File Reference</div></div>
</div><!--header-->
<div class="contents">
<p><a href="https://en.wikipedia.org/wiki/Scheduling_(computing)" target="_blank">Non-Preemptive Priority Scheduling</a> is a scheduling algorithm that selects the tasks to execute based on priority.
<a href="#details">More...</a></p>
<div class="textblock"><code>#include &lt;assert.h&gt;</code><br />
<code>#include &lt;stdbool.h&gt;</code><br />
<code>#include &lt;stdio.h&gt;</code><br />
<code>#include &lt;stdlib.h&gt;</code><br />
</div><div class="textblock"><div class="dynheader">
Include dependency graph for non_preemptive_priority_scheduling.c:</div>
<div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d3/ded/non__preemptive__priority__scheduling_8c__incl.svg" width="352" height="139"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
</div>
</div><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="nested-classes" name="nested-classes"></a>
Data Structures</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d5/da1/structnode.html">node</a></td></tr>
<tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="../../db/d8b/struct_node.html" title="Node, the basic data structure of the tree.">Node</a>, the basic data structure in the tree. <a href="../../d5/da1/structnode.html#details">More...</a><br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="typedef-members" name="typedef-members"></a>
Typedefs</h2></td></tr>
<tr class="memitem:af4aeda155dbe167f1c1cf38cb65bf324"><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="../../d5/da1/structnode.html">node</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#af4aeda155dbe167f1c1cf38cb65bf324">node</a></td></tr>
<tr class="memdesc:af4aeda155dbe167f1c1cf38cb65bf324"><td class="mdescLeft">&#160;</td><td class="mdescRight">for assert <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#af4aeda155dbe167f1c1cf38cb65bf324">More...</a><br /></td></tr>
<tr class="separator:af4aeda155dbe167f1c1cf38cb65bf324"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="func-members" name="func-members"></a>
Functions</h2></td></tr>
<tr class="memitem:a5d0943b2e0e1b48b9c3a575a7f262c36"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a5d0943b2e0e1b48b9c3a575a7f262c36">insert</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> **root, int id, int at, int bt, int prior)</td></tr>
<tr class="memdesc:a5d0943b2e0e1b48b9c3a575a7f262c36"><td class="mdescLeft">&#160;</td><td class="mdescRight">To insert a new process in the queue. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a5d0943b2e0e1b48b9c3a575a7f262c36">More...</a><br /></td></tr>
<tr class="separator:a5d0943b2e0e1b48b9c3a575a7f262c36"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae485a5f4c1bc45447d201e2a309b3397"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae485a5f4c1bc45447d201e2a309b3397">delete</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> **root, int id)</td></tr>
<tr class="separator:ae485a5f4c1bc45447d201e2a309b3397"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:adeb04e9743495f14aa4ef78631b9253c"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#adeb04e9743495f14aa4ef78631b9253c">show_list</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> *head)</td></tr>
<tr class="memdesc:adeb04e9743495f14aa4ef78631b9253c"><td class="mdescLeft">&#160;</td><td class="mdescRight">To show the process queue. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#adeb04e9743495f14aa4ef78631b9253c">More...</a><br /></td></tr>
<tr class="separator:adeb04e9743495f14aa4ef78631b9253c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a40e454ce0750e794007bf41a7102b3a9"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9">l_length</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> **root)</td></tr>
<tr class="memdesc:a40e454ce0750e794007bf41a7102b3a9"><td class="mdescLeft">&#160;</td><td class="mdescRight">To length process queue. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9">More...</a><br /></td></tr>
<tr class="separator:a40e454ce0750e794007bf41a7102b3a9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a9bc34d3b138bd0153a942cf6a8b31533"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a9bc34d3b138bd0153a942cf6a8b31533">update</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> **root, int id, int ct, int wt, int tat)</td></tr>
<tr class="memdesc:a9bc34d3b138bd0153a942cf6a8b31533"><td class="mdescLeft">&#160;</td><td class="mdescRight">To update the completion time, turn around time and waiting time of the processes. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a9bc34d3b138bd0153a942cf6a8b31533">More...</a><br /></td></tr>
<tr class="separator:a9bc34d3b138bd0153a942cf6a8b31533"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a01b8ee561d8532a44d665c2c854e0d09"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09">compare</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> *a, <a class="el" href="../../d5/da1/structnode.html">node</a> *b)</td></tr>
<tr class="memdesc:a01b8ee561d8532a44d665c2c854e0d09"><td class="mdescLeft">&#160;</td><td class="mdescRight">To compare the priority of two processes based on their arrival time and priority. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09">More...</a><br /></td></tr>
<tr class="separator:a01b8ee561d8532a44d665c2c854e0d09"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abbb2446313782dd3ba9ff2a7ad0ce1df"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df">calculate_ct</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> **root)</td></tr>
<tr class="memdesc:abbb2446313782dd3ba9ff2a7ad0ce1df"><td class="mdescLeft">&#160;</td><td class="mdescRight">To calculate the average completion time of all the processes. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df">More...</a><br /></td></tr>
<tr class="separator:abbb2446313782dd3ba9ff2a7ad0ce1df"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a458803d3c3926a6bcc4d51540f297756"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756">calculate_tat</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> **root)</td></tr>
<tr class="memdesc:a458803d3c3926a6bcc4d51540f297756"><td class="mdescLeft">&#160;</td><td class="mdescRight">To calculate the average turn around time of all the processes. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756">More...</a><br /></td></tr>
<tr class="separator:a458803d3c3926a6bcc4d51540f297756"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae5e4de64ef6c5676d5013d90229a875c"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c">calculate_wt</a> (<a class="el" href="../../d5/da1/structnode.html">node</a> **root)</td></tr>
<tr class="memdesc:ae5e4de64ef6c5676d5013d90229a875c"><td class="mdescLeft">&#160;</td><td class="mdescRight">To calculate the average waiting time of all the processes. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c">More...</a><br /></td></tr>
<tr class="separator:ae5e4de64ef6c5676d5013d90229a875c"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa8dca7b867074164d5f45b0f3851269d"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d">test</a> ()</td></tr>
<tr class="memdesc:aa8dca7b867074164d5f45b0f3851269d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Self-test implementations. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d">More...</a><br /></td></tr>
<tr class="separator:aa8dca7b867074164d5f45b0f3851269d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae66f6b31b5ad750f1fe042a706a4e3d4"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4">main</a> ()</td></tr>
<tr class="memdesc:ae66f6b31b5ad750f1fe042a706a4e3d4"><td class="mdescLeft">&#160;</td><td class="mdescRight">Main function. <a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4">More...</a><br /></td></tr>
<tr class="separator:ae66f6b31b5ad750f1fe042a706a4e3d4"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p ><a href="https://en.wikipedia.org/wiki/Scheduling_(computing)" target="_blank">Non-Preemptive Priority Scheduling</a> is a scheduling algorithm that selects the tasks to execute based on priority. </p>
<p >In this algorithm, processes are executed according to their priority. The process with the highest priority is to be executed first and so on. In this algorithm, a variable is maintained known as the time quantum. The length of the time quantum is decided by the user. The process which is being executed is interrupted after the expiration of the time quantum and the next process with the highest priority is executed. This cycle of interrupting the process after every time quantum and resuming the next process with the highest priority continues until all the processes have been executed. </p><dl class="section author"><dt>Author</dt><dd><a href="https://github.com/aryaraj132" target="_blank">Aryan Raj</a> </dd></dl>
</div><h2 class="groupheader">Typedef Documentation</h2>
<a id="af4aeda155dbe167f1c1cf38cb65bf324" name="af4aeda155dbe167f1c1cf38cb65bf324"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af4aeda155dbe167f1c1cf38cb65bf324">&#9670;&#160;</a></span>node</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef struct <a class="el" href="../../d5/da1/structnode.html">node</a> <a class="el" href="../../d5/da1/structnode.html">node</a></td>
</tr>
</table>
</div><div class="memdoc">
<p>for assert </p>
<p >for boolean data type for IO operations (<code>printf</code>) for memory allocation eg: <code>malloc</code>, <code>realloc</code>, <code>free</code>, <code>exit</code></p>
<p >Structure to represent a process </p>
</div>
</div>
<h2 class="groupheader">Function Documentation</h2>
<a id="abbb2446313782dd3ba9ff2a7ad0ce1df" name="abbb2446313782dd3ba9ff2a7ad0ce1df"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abbb2446313782dd3ba9ff2a7ad0ce1df">&#9670;&#160;</a></span>calculate_ct()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float calculate_ct </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> **&#160;</td>
<td class="paramname"><em>root</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>To calculate the average completion time of all the processes. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">root</td><td>pointer to the head of the queue </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>float average completion time </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 216</span>{</div>
<div class="line"><span class="lineno"> 217</span> <span class="comment">// calculate the total completion time of all the processes</span></div>
<div class="line"><span class="lineno"> 218</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *ptr = *root, *prior, *rpt;</div>
<div class="line"><span class="lineno"> 219</span> <span class="keywordtype">int</span> ct = 0, i, time = 0;</div>
<div class="line"><span class="lineno"> 220</span> <span class="keywordtype">int</span> n = <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9">l_length</a>(root);</div>
<div class="line"><span class="lineno"> 221</span> <span class="keywordtype">float</span> avg, sum = 0;</div>
<div class="line"><span class="lineno"> 222</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *duproot = NULL;</div>
<div class="line"><span class="lineno"> 223</span> <span class="comment">// create a duplicate queue</span></div>
<div class="line"><span class="lineno"> 224</span> <span class="keywordflow">while</span> (ptr != NULL)</div>
<div class="line"><span class="lineno"> 225</span> {</div>
<div class="line"><span class="lineno"> 226</span> insert(&amp;duproot, ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a>, ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">AT</a>, ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">BT</a>, ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b">priority</a>);</div>
<div class="line"><span class="lineno"> 227</span> ptr = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 228</span> }</div>
<div class="line"><span class="lineno"> 229</span> ptr = duproot;</div>
<div class="line"><span class="lineno"> 230</span> rpt = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 231</span> <span class="comment">// sort the queue based on the arrival time and priority</span></div>
<div class="line"><span class="lineno"> 232</span> <span class="keywordflow">while</span> (rpt != NULL)</div>
<div class="line"><span class="lineno"> 233</span> {</div>
<div class="line"><span class="lineno"> 234</span> <span class="keywordflow">if</span> (!<a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09">compare</a>(ptr, rpt))</div>
<div class="line"><span class="lineno"> 235</span> {</div>
<div class="line"><span class="lineno"> 236</span> ptr = rpt;</div>
<div class="line"><span class="lineno"> 237</span> }</div>
<div class="line"><span class="lineno"> 238</span> rpt = rpt-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 239</span> }</div>
<div class="line"><span class="lineno"> 240</span> <span class="comment">// ptr is the process to be executed first.</span></div>
<div class="line"><span class="lineno"> 241</span> ct = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">AT</a> + ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">BT</a>;</div>
<div class="line"><span class="lineno"> 242</span> time = ct;</div>
<div class="line"><span class="lineno"> 243</span> sum += ct;</div>
<div class="line"><span class="lineno"> 244</span> <span class="comment">// update the completion time, turn around time and waiting time of the</span></div>
<div class="line"><span class="lineno"> 245</span> <span class="comment">// process</span></div>
<div class="line"><span class="lineno"> 246</span> update(root, ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a>, ct, 0, 0);</div>
<div class="line"><span class="lineno"> 247</span> <span class="keyword">delete</span> (&amp;duproot, ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a>);</div>
<div class="line"><span class="lineno"> 248</span> <span class="comment">// repeat the process until all the processes are executed</span></div>
<div class="line"><span class="lineno"> 249</span> <span class="keywordflow">for</span> (i = 0; i &lt; n - 1; i++)</div>
<div class="line"><span class="lineno"> 250</span> {</div>
<div class="line"><span class="lineno"> 251</span> ptr = duproot;</div>
<div class="line"><span class="lineno"> 252</span> <span class="keywordflow">while</span> (ptr != NULL &amp;&amp; ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">AT</a> &gt; time)</div>
<div class="line"><span class="lineno"> 253</span> {</div>
<div class="line"><span class="lineno"> 254</span> ptr = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 255</span> }</div>
<div class="line"><span class="lineno"> 256</span> rpt = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 257</span> <span class="keywordflow">while</span> (rpt != NULL)</div>
<div class="line"><span class="lineno"> 258</span> {</div>
<div class="line"><span class="lineno"> 259</span> <span class="keywordflow">if</span> (rpt-&gt;AT &lt;= time)</div>
<div class="line"><span class="lineno"> 260</span> {</div>
<div class="line"><span class="lineno"> 261</span> <span class="keywordflow">if</span> (rpt-&gt;priority &lt; ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b">priority</a>)</div>
<div class="line"><span class="lineno"> 262</span> {</div>
<div class="line"><span class="lineno"> 263</span> ptr = rpt;</div>
<div class="line"><span class="lineno"> 264</span> }</div>
<div class="line"><span class="lineno"> 265</span> }</div>
<div class="line"><span class="lineno"> 266</span> rpt = rpt-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 267</span> }</div>
<div class="line"><span class="lineno"> 268</span> ct += ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">BT</a>;</div>
<div class="line"><span class="lineno"> 269</span> time += ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">BT</a>;</div>
<div class="line"><span class="lineno"> 270</span> sum += ct;</div>
<div class="line"><span class="lineno"> 271</span> update(root, ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a>, ct, 0, 0);</div>
<div class="line"><span class="lineno"> 272</span> <span class="keyword">delete</span> (&amp;duproot, ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a>);</div>
<div class="line"><span class="lineno"> 273</span> }</div>
<div class="line"><span class="lineno"> 274</span> avg = sum / n;</div>
<div class="line"><span class="lineno"> 275</span> <span class="keywordflow">return</span> avg;</div>
<div class="line"><span class="lineno"> 276</span>}</div>
<div class="ttc" id="anon__preemptive__priority__scheduling_8c_html_a01b8ee561d8532a44d665c2c854e0d09"><div class="ttname"><a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09">compare</a></div><div class="ttdeci">bool compare(node *a, node *b)</div><div class="ttdoc">To compare the priority of two processes based on their arrival time and priority.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:199</div></div>
<div class="ttc" id="anon__preemptive__priority__scheduling_8c_html_a40e454ce0750e794007bf41a7102b3a9"><div class="ttname"><a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9">l_length</a></div><div class="ttdeci">int l_length(node **root)</div><div class="ttdoc">To length process queue.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:129</div></div>
<div class="ttc" id="astructnode_html"><div class="ttname"><a href="../../d5/da1/structnode.html">node</a></div><div class="ttdoc">Node, the basic data structure in the tree.</div><div class="ttdef"><b>Definition:</b> binary_search_tree.c:15</div></div>
<div class="ttc" id="astructnode_html_a111a569ab2765add9b91c9f94cf9f063"><div class="ttname"><a href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node::next</a></div><div class="ttdeci">struct node * next</div><div class="ttdoc">pointer to the node</div><div class="ttdef"><b>Definition:</b> bfs.c:24</div></div>
<div class="ttc" id="astructnode_html_a44e51013eb31fc1f17866ca9fe8ac75b"><div class="ttname"><a href="../../d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b">node::priority</a></div><div class="ttdeci">int priority</div><div class="ttdoc">Priority of the process node.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:32</div></div>
<div class="ttc" id="astructnode_html_a5507c3c76ddbda9c482749f3a8a8f0cc"><div class="ttname"><a href="../../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">node::AT</a></div><div class="ttdeci">int AT</div><div class="ttdoc">Arrival Time of the process node.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:30</div></div>
<div class="ttc" id="astructnode_html_ac0a6453f996d4c362c015fd4348ecc6e"><div class="ttname"><a href="../../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">node::BT</a></div><div class="ttdeci">int BT</div><div class="ttdoc">Burst Time of the process node.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:31</div></div>
<div class="ttc" id="astructnode_html_ac0c8b57ac0a76d72588561c81481c454"><div class="ttname"><a href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">node::ID</a></div><div class="ttdeci">int ID</div><div class="ttdoc">ID of the process node.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:29</div></div>
</div><!-- fragment --><div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d2/d87/non__preemptive__priority__scheduling_8c_abbb2446313782dd3ba9ff2a7ad0ce1df_cgraph.svg" width="223" height="86"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
</div>
</div>
</div>
<a id="a458803d3c3926a6bcc4d51540f297756" name="a458803d3c3926a6bcc4d51540f297756"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a458803d3c3926a6bcc4d51540f297756">&#9670;&#160;</a></span>calculate_tat()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float calculate_tat </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> **&#160;</td>
<td class="paramname"><em>root</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>To calculate the average turn around time of all the processes. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">root</td><td>pointer to the head of the queue </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>float average turn around time </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 283</span>{</div>
<div class="line"><span class="lineno"> 284</span> <span class="keywordtype">float</span> avg, sum = 0;</div>
<div class="line"><span class="lineno"> 285</span> <span class="keywordtype">int</span> n = <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9">l_length</a>(root);</div>
<div class="line"><span class="lineno"> 286</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *ptr = *root;</div>
<div class="line"><span class="lineno"> 287</span> <span class="comment">// calculate the completion time if not already calculated</span></div>
<div class="line"><span class="lineno"> 288</span> <span class="keywordflow">if</span> (ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">CT</a> == 0)</div>
<div class="line"><span class="lineno"> 289</span> {</div>
<div class="line"><span class="lineno"> 290</span> <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df">calculate_ct</a>(root);</div>
<div class="line"><span class="lineno"> 291</span> }</div>
<div class="line"><span class="lineno"> 292</span> <span class="comment">// calculate the total turn around time of all the processes</span></div>
<div class="line"><span class="lineno"> 293</span> <span class="keywordflow">while</span> (ptr != NULL)</div>
<div class="line"><span class="lineno"> 294</span> {</div>
<div class="line"><span class="lineno"> 295</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">TAT</a> = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">CT</a> - ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">AT</a>;</div>
<div class="line"><span class="lineno"> 296</span> sum += ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">TAT</a>;</div>
<div class="line"><span class="lineno"> 297</span> ptr = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 298</span> }</div>
<div class="line"><span class="lineno"> 299</span> avg = sum / n;</div>
<div class="line"><span class="lineno"> 300</span> <span class="keywordflow">return</span> avg;</div>
<div class="line"><span class="lineno"> 301</span>}</div>
<div class="ttc" id="anon__preemptive__priority__scheduling_8c_html_abbb2446313782dd3ba9ff2a7ad0ce1df"><div class="ttname"><a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df">calculate_ct</a></div><div class="ttdeci">float calculate_ct(node **root)</div><div class="ttdoc">To calculate the average completion time of all the processes.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:215</div></div>
<div class="ttc" id="astructnode_html_abbe30696293849bebed90520b8cf7ba3"><div class="ttname"><a href="../../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">node::TAT</a></div><div class="ttdeci">int TAT</div><div class="ttdoc">Turn Around Time of the process node.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:35</div></div>
<div class="ttc" id="astructnode_html_aece40a25d30d3e0d2135007642b64882"><div class="ttname"><a href="../../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">node::CT</a></div><div class="ttdeci">int CT</div><div class="ttdoc">Completion Time of the process node.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:33</div></div>
</div><!-- fragment --><div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d2/d87/non__preemptive__priority__scheduling_8c_a458803d3c3926a6bcc4d51540f297756_cgraph.svg" width="367" height="86"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
</div>
</div>
</div>
<a id="ae5e4de64ef6c5676d5013d90229a875c" name="ae5e4de64ef6c5676d5013d90229a875c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae5e4de64ef6c5676d5013d90229a875c">&#9670;&#160;</a></span>calculate_wt()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">float calculate_wt </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> **&#160;</td>
<td class="paramname"><em>root</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>To calculate the average waiting time of all the processes. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">root</td><td>pointer to the head of the queue </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>float average waiting time </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 308</span>{</div>
<div class="line"><span class="lineno"> 309</span> <span class="keywordtype">float</span> avg, sum = 0;</div>
<div class="line"><span class="lineno"> 310</span> <span class="keywordtype">int</span> n = <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9">l_length</a>(root);</div>
<div class="line"><span class="lineno"> 311</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *ptr = *root;</div>
<div class="line"><span class="lineno"> 312</span> <span class="comment">// calculate the completion if not already calculated</span></div>
<div class="line"><span class="lineno"> 313</span> <span class="keywordflow">if</span> (ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">CT</a> == 0)</div>
<div class="line"><span class="lineno"> 314</span> {</div>
<div class="line"><span class="lineno"> 315</span> <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df">calculate_ct</a>(root);</div>
<div class="line"><span class="lineno"> 316</span> }</div>
<div class="line"><span class="lineno"> 317</span> <span class="comment">// calculate the total waiting time of all the processes</span></div>
<div class="line"><span class="lineno"> 318</span> <span class="keywordflow">while</span> (ptr != NULL)</div>
<div class="line"><span class="lineno"> 319</span> {</div>
<div class="line"><span class="lineno"> 320</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653">WT</a> = (ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">TAT</a> - ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">BT</a>);</div>
<div class="line"><span class="lineno"> 321</span> sum += ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653">WT</a>;</div>
<div class="line"><span class="lineno"> 322</span> ptr = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 323</span> }</div>
<div class="line"><span class="lineno"> 324</span> avg = sum / n;</div>
<div class="line"><span class="lineno"> 325</span> <span class="keywordflow">return</span> avg;</div>
<div class="line"><span class="lineno"> 326</span>}</div>
<div class="ttc" id="astructnode_html_a878d22393f374f3861035e35b9edd653"><div class="ttname"><a href="../../d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653">node::WT</a></div><div class="ttdeci">int WT</div><div class="ttdoc">Waiting Time of the process node.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:34</div></div>
</div><!-- fragment --><div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d2/d87/non__preemptive__priority__scheduling_8c_ae5e4de64ef6c5676d5013d90229a875c_cgraph.svg" width="366" height="86"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
</div>
</div>
</div>
<a id="a01b8ee561d8532a44d665c2c854e0d09" name="a01b8ee561d8532a44d665c2c854e0d09"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a01b8ee561d8532a44d665c2c854e0d09">&#9670;&#160;</a></span>compare()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool compare </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> *&#160;</td>
<td class="paramname"><em>a</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> *&#160;</td>
<td class="paramname"><em>b</em>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>To compare the priority of two processes based on their arrival time and priority. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">a</td><td>pointer to the first process </td></tr>
<tr><td class="paramname">b</td><td>pointer to the second process </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if the priority of the first process is greater than the the second process </dd>
<dd>
false if the priority of the first process is NOT greater than the second process </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 200</span>{</div>
<div class="line"><span class="lineno"> 201</span> <span class="keywordflow">if</span> (a-&gt;AT == b-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">AT</a>)</div>
<div class="line"><span class="lineno"> 202</span> {</div>
<div class="line"><span class="lineno"> 203</span> <span class="keywordflow">return</span> a-&gt;priority &lt; b-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b">priority</a>;</div>
<div class="line"><span class="lineno"> 204</span> }</div>
<div class="line"><span class="lineno"> 205</span> <span class="keywordflow">else</span></div>
<div class="line"><span class="lineno"> 206</span> {</div>
<div class="line"><span class="lineno"> 207</span> <span class="keywordflow">return</span> a-&gt;AT &lt; b-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">AT</a>;</div>
<div class="line"><span class="lineno"> 208</span> }</div>
<div class="line"><span class="lineno"> 209</span>}</div>
</div><!-- fragment -->
</div>
</div>
<a id="ae485a5f4c1bc45447d201e2a309b3397" name="ae485a5f4c1bc45447d201e2a309b3397"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae485a5f4c1bc45447d201e2a309b3397">&#9670;&#160;</a></span>delete()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void delete </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> **&#160;</td>
<td class="paramname"><em>root</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>id</em>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<div class="fragment"><div class="line"><span class="lineno"> 82</span>{</div>
<div class="line"><span class="lineno"> 83</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *ptr = *root, *prev;</div>
<div class="line"><span class="lineno"> 84</span> <span class="comment">// if the root is null, return</span></div>
<div class="line"><span class="lineno"> 85</span> <span class="keywordflow">if</span> (ptr == NULL)</div>
<div class="line"><span class="lineno"> 86</span> {</div>
<div class="line"><span class="lineno"> 87</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 88</span> }</div>
<div class="line"><span class="lineno"> 89</span> <span class="comment">// if the root is the process to be deleted, make the next node the root</span></div>
<div class="line"><span class="lineno"> 90</span> <span class="keywordflow">if</span> (ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a> == <span class="keywordtype">id</span>)</div>
<div class="line"><span class="lineno"> 91</span> {</div>
<div class="line"><span class="lineno"> 92</span> *root = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 93</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(ptr);</div>
<div class="line"><span class="lineno"> 94</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 95</span> }</div>
<div class="line"><span class="lineno"> 96</span> <span class="comment">// else traverse the queue and delete the process</span></div>
<div class="line"><span class="lineno"> 97</span> <span class="keywordflow">while</span> (ptr != NULL &amp;&amp; ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a> != <span class="keywordtype">id</span>)</div>
<div class="line"><span class="lineno"> 98</span> {</div>
<div class="line"><span class="lineno"> 99</span> prev = ptr;</div>
<div class="line"><span class="lineno"> 100</span> ptr = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 101</span> }</div>
<div class="line"><span class="lineno"> 102</span> <span class="keywordflow">if</span> (ptr == NULL)</div>
<div class="line"><span class="lineno"> 103</span> {</div>
<div class="line"><span class="lineno"> 104</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 105</span> }</div>
<div class="line"><span class="lineno"> 106</span> prev-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 107</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(ptr);</div>
<div class="line"><span class="lineno"> 108</span>}</div>
<div class="ttc" id="amalloc__dbg_8h_html_a9cc854374299a1dd933bf62029761768"><div class="ttname"><a href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a></div><div class="ttdeci">#define free(ptr)</div><div class="ttdoc">This macro replace the standard free function with free_dbg.</div><div class="ttdef"><b>Definition:</b> malloc_dbg.h:26</div></div>
</div><!-- fragment -->
</div>
</div>
<a id="a5d0943b2e0e1b48b9c3a575a7f262c36" name="a5d0943b2e0e1b48b9c3a575a7f262c36"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5d0943b2e0e1b48b9c3a575a7f262c36">&#9670;&#160;</a></span>insert()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void insert </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> **&#160;</td>
<td class="paramname"><em>root</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>at</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>bt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>prior</em>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>To insert a new process in the queue. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">root</td><td>pointer to the head of the queue </td></tr>
<tr><td class="paramname">id</td><td>process ID </td></tr>
<tr><td class="paramname">at</td><td>arrival time </td></tr>
<tr><td class="paramname">bt</td><td>burst time </td></tr>
<tr><td class="paramname">prior</td><td>priority of the process </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>void </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 49</span>{</div>
<div class="line"><span class="lineno"> 50</span> <span class="comment">// create a new node and initialize it</span></div>
<div class="line"><span class="lineno"> 51</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *<span class="keyword">new</span> = (<a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *)<a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc</a>(<span class="keyword">sizeof</span>(<a class="code hl_struct" href="../../d5/da1/structnode.html">node</a>));</div>
<div class="line"><span class="lineno"> 52</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *ptr = *root;</div>
<div class="line"><span class="lineno"> 53</span> <span class="keyword">new</span>-&gt;ID = id;</div>
<div class="line"><span class="lineno"> 54</span> <span class="keyword">new</span>-&gt;AT = at;</div>
<div class="line"><span class="lineno"> 55</span> <span class="keyword">new</span>-&gt;BT = bt;</div>
<div class="line"><span class="lineno"> 56</span> <span class="keyword">new</span>-&gt;priority = prior;</div>
<div class="line"><span class="lineno"> 57</span> <span class="keyword">new</span>-&gt;next = NULL;</div>
<div class="line"><span class="lineno"> 58</span> <span class="keyword">new</span>-&gt;CT = 0;</div>
<div class="line"><span class="lineno"> 59</span> <span class="keyword">new</span>-&gt;WT = 0;</div>
<div class="line"><span class="lineno"> 60</span> <span class="keyword">new</span>-&gt;TAT = 0;</div>
<div class="line"><span class="lineno"> 61</span> <span class="comment">// if the root is null, make the new node the root</span></div>
<div class="line"><span class="lineno"> 62</span> <span class="keywordflow">if</span> (*root == NULL)</div>
<div class="line"><span class="lineno"> 63</span> {</div>
<div class="line"><span class="lineno"> 64</span> *root = <span class="keyword">new</span>;</div>
<div class="line"><span class="lineno"> 65</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 66</span> }</div>
<div class="line"><span class="lineno"> 67</span> <span class="comment">// else traverse to the end of the queue and insert the new node there</span></div>
<div class="line"><span class="lineno"> 68</span> <span class="keywordflow">while</span> (ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> != NULL)</div>
<div class="line"><span class="lineno"> 69</span> {</div>
<div class="line"><span class="lineno"> 70</span> ptr = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 71</span> }</div>
<div class="line"><span class="lineno"> 72</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = <span class="keyword">new</span>;</div>
<div class="line"><span class="lineno"> 73</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 74</span>}</div>
<div class="ttc" id="amalloc__dbg_8h_html_a725f50ecaf1959d96de79b36b4788fee"><div class="ttname"><a href="../../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc</a></div><div class="ttdeci">#define malloc(bytes)</div><div class="ttdoc">This macro replace the standard malloc function with malloc_dbg.</div><div class="ttdef"><b>Definition:</b> malloc_dbg.h:18</div></div>
</div><!-- fragment -->
</div>
</div>
<a id="a40e454ce0750e794007bf41a7102b3a9" name="a40e454ce0750e794007bf41a7102b3a9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a40e454ce0750e794007bf41a7102b3a9">&#9670;&#160;</a></span>l_length()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int l_length </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> **&#160;</td>
<td class="paramname"><em>root</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>To length process queue. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">root</td><td>pointer to the head of the queue </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>int total length of the queue </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 130</span>{</div>
<div class="line"><span class="lineno"> 131</span> <span class="keywordtype">int</span> count = 0;</div>
<div class="line"><span class="lineno"> 132</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *ptr = *root;</div>
<div class="line"><span class="lineno"> 133</span> <span class="keywordflow">while</span> (ptr != NULL)</div>
<div class="line"><span class="lineno"> 134</span> {</div>
<div class="line"><span class="lineno"> 135</span> count++;</div>
<div class="line"><span class="lineno"> 136</span> ptr = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 137</span> }</div>
<div class="line"><span class="lineno"> 138</span> <span class="keywordflow">return</span> count;</div>
<div class="line"><span class="lineno"> 139</span>}</div>
</div><!-- fragment -->
</div>
</div>
<a id="ae66f6b31b5ad750f1fe042a706a4e3d4" name="ae66f6b31b5ad750f1fe042a706a4e3d4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae66f6b31b5ad750f1fe042a706a4e3d4">&#9670;&#160;</a></span>main()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int main </td>
<td>(</td>
<td class="paramtype">void&#160;</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Main function. </p>
<dl class="section return"><dt>Returns</dt><dd>0 on exit </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 365</span>{</div>
<div class="line"><span class="lineno"> 366</span> <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d">test</a>(); <span class="comment">// run self-test implementations</span></div>
<div class="line"><span class="lineno"> 367</span> </div>
<div class="line"><span class="lineno"> 368</span> <span class="keywordflow">return</span> 0;</div>
<div class="line"><span class="lineno"> 369</span>}</div>
<div class="ttc" id="anon__preemptive__priority__scheduling_8c_html_aa8dca7b867074164d5f45b0f3851269d"><div class="ttname"><a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d">test</a></div><div class="ttdeci">static void test()</div><div class="ttdoc">Self-test implementations.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:332</div></div>
</div><!-- fragment --><div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d2/d87/non__preemptive__priority__scheduling_8c_ae66f6b31b5ad750f1fe042a706a4e3d4_cgraph.svg" width="558" height="136"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
</div>
</div>
</div>
<a id="adeb04e9743495f14aa4ef78631b9253c" name="adeb04e9743495f14aa4ef78631b9253c"></a>
<h2 class="memtitle"><span class="permalink"><a href="#adeb04e9743495f14aa4ef78631b9253c">&#9670;&#160;</a></span>show_list()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void show_list </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> *&#160;</td>
<td class="paramname"><em>head</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>To show the process queue. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">head</td><td>pointer to the head of the queue </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>void </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 115</span>{</div>
<div class="line"><span class="lineno"> 116</span> printf(<span class="stringliteral">&quot;Process Priority AT BT CT TAT WT \n&quot;</span>);</div>
<div class="line"><span class="lineno"> 117</span> <span class="keywordflow">while</span> (head != NULL)</div>
<div class="line"><span class="lineno"> 118</span> {</div>
<div class="line"><span class="lineno"> 119</span> printf(<span class="stringliteral">&quot;P%d. %d %d %d %d %d %d \n&quot;</span>, head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a>, head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b">priority</a>, head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">AT</a>,</div>
<div class="line"><span class="lineno"> 120</span> head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">BT</a>, head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">CT</a>, head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">TAT</a>, head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653">WT</a>);</div>
<div class="line"><span class="lineno"> 121</span> head = head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 122</span> }</div>
<div class="line"><span class="lineno"> 123</span>}</div>
</div><!-- fragment -->
</div>
</div>
<a id="aa8dca7b867074164d5f45b0f3851269d" name="aa8dca7b867074164d5f45b0f3851269d"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aa8dca7b867074164d5f45b0f3851269d">&#9670;&#160;</a></span>test()</h2>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static void test </td>
<td>(</td>
<td class="paramtype">void&#160;</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Self-test implementations. </p>
<dl class="section return"><dt>Returns</dt><dd>void </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 333</span>{</div>
<div class="line"><span class="lineno"> 334</span> <span class="comment">// Entered processes</span></div>
<div class="line"><span class="lineno"> 335</span> <span class="comment">// printf(&quot;ID Priority Arrival Time Burst Time \n&quot;);</span></div>
<div class="line"><span class="lineno"> 336</span> <span class="comment">// printf(&quot;1 0 5 1 \n&quot;);</span></div>
<div class="line"><span class="lineno"> 337</span> <span class="comment">// printf(&quot;2 1 4 2 \n&quot;);</span></div>
<div class="line"><span class="lineno"> 338</span> <span class="comment">// printf(&quot;3 2 3 3 \n&quot;);</span></div>
<div class="line"><span class="lineno"> 339</span> <span class="comment">// printf(&quot;4 3 2 4 \n&quot;);</span></div>
<div class="line"><span class="lineno"> 340</span> <span class="comment">// printf(&quot;5 4 1 5 \n&quot;);</span></div>
<div class="line"><span class="lineno"> 341</span> </div>
<div class="line"><span class="lineno"> 342</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *root = NULL;</div>
<div class="line"><span class="lineno"> 343</span> insert(&amp;root, 1, 0, 5, 1);</div>
<div class="line"><span class="lineno"> 344</span> insert(&amp;root, 2, 1, 4, 2);</div>
<div class="line"><span class="lineno"> 345</span> insert(&amp;root, 3, 2, 3, 3);</div>
<div class="line"><span class="lineno"> 346</span> insert(&amp;root, 4, 3, 2, 4);</div>
<div class="line"><span class="lineno"> 347</span> insert(&amp;root, 5, 4, 1, 5);</div>
<div class="line"><span class="lineno"> 348</span> <span class="keywordtype">float</span> avgCT = <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df">calculate_ct</a>(&amp;root);</div>
<div class="line"><span class="lineno"> 349</span> <span class="keywordtype">float</span> avgTAT = <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756">calculate_tat</a>(&amp;root);</div>
<div class="line"><span class="lineno"> 350</span> <span class="keywordtype">float</span> avgWT = <a class="code hl_function" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c">calculate_wt</a>(&amp;root);</div>
<div class="line"><span class="lineno"> 351</span> assert(avgCT == 11);</div>
<div class="line"><span class="lineno"> 352</span> assert(avgTAT == 9);</div>
<div class="line"><span class="lineno"> 353</span> assert(avgWT == 6);</div>
<div class="line"><span class="lineno"> 354</span> printf(<span class="stringliteral">&quot;[+] All tests have successfully passed!\n&quot;</span>);</div>
<div class="line"><span class="lineno"> 355</span> <span class="comment">// printf(&quot;Average Completion Time is : %f \n&quot;, calculate_ct(&amp;root));</span></div>
<div class="line"><span class="lineno"> 356</span> <span class="comment">// printf(&quot;Average Turn Around Time is : %f \n&quot;, calculate_tat(&amp;root));</span></div>
<div class="line"><span class="lineno"> 357</span> <span class="comment">// printf(&quot;Average Waiting Time is : %f \n&quot;, calculate_wt(&amp;root));</span></div>
<div class="line"><span class="lineno"> 358</span>}</div>
<div class="ttc" id="anon__preemptive__priority__scheduling_8c_html_a458803d3c3926a6bcc4d51540f297756"><div class="ttname"><a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756">calculate_tat</a></div><div class="ttdeci">float calculate_tat(node **root)</div><div class="ttdoc">To calculate the average turn around time of all the processes.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:282</div></div>
<div class="ttc" id="anon__preemptive__priority__scheduling_8c_html_ae5e4de64ef6c5676d5013d90229a875c"><div class="ttname"><a href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c">calculate_wt</a></div><div class="ttdeci">float calculate_wt(node **root)</div><div class="ttdoc">To calculate the average waiting time of all the processes.</div><div class="ttdef"><b>Definition:</b> non_preemptive_priority_scheduling.c:307</div></div>
</div><!-- fragment --><div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><iframe scrolling="no" frameborder="0" src="../../d2/d87/non__preemptive__priority__scheduling_8c_aa8dca7b867074164d5f45b0f3851269d_cgraph.svg" width="459" height="136"><p><b>This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.</b></p></iframe>
</div>
</div>
</div>
</div>
<a id="a9bc34d3b138bd0153a942cf6a8b31533" name="a9bc34d3b138bd0153a942cf6a8b31533"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9bc34d3b138bd0153a942cf6a8b31533">&#9670;&#160;</a></span>update()</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void update </td>
<td>(</td>
<td class="paramtype"><a class="el" href="../../d5/da1/structnode.html">node</a> **&#160;</td>
<td class="paramname"><em>root</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>ct</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>wt</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int&#160;</td>
<td class="paramname"><em>tat</em>&#160;</td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>To update the completion time, turn around time and waiting time of the processes. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">root</td><td>pointer to the head of the queue </td></tr>
<tr><td class="paramname">id</td><td>process ID </td></tr>
<tr><td class="paramname">ct</td><td>current time </td></tr>
<tr><td class="paramname">wt</td><td>waiting time </td></tr>
<tr><td class="paramname">tat</td><td>turn around time </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>void </dd></dl>
<div class="fragment"><div class="line"><span class="lineno"> 151</span>{</div>
<div class="line"><span class="lineno"> 152</span> <a class="code hl_struct" href="../../d5/da1/structnode.html">node</a> *ptr = *root;</div>
<div class="line"><span class="lineno"> 153</span> <span class="comment">// If process to be updated is head node</span></div>
<div class="line"><span class="lineno"> 154</span> <span class="keywordflow">if</span> (ptr != NULL &amp;&amp; ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a> == <span class="keywordtype">id</span>)</div>
<div class="line"><span class="lineno"> 155</span> {</div>
<div class="line"><span class="lineno"> 156</span> <span class="keywordflow">if</span> (ct != 0)</div>
<div class="line"><span class="lineno"> 157</span> {</div>
<div class="line"><span class="lineno"> 158</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">CT</a> = ct;</div>
<div class="line"><span class="lineno"> 159</span> }</div>
<div class="line"><span class="lineno"> 160</span> <span class="keywordflow">if</span> (wt != 0)</div>
<div class="line"><span class="lineno"> 161</span> {</div>
<div class="line"><span class="lineno"> 162</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653">WT</a> = wt;</div>
<div class="line"><span class="lineno"> 163</span> }</div>
<div class="line"><span class="lineno"> 164</span> <span class="keywordflow">if</span> (tat != 0)</div>
<div class="line"><span class="lineno"> 165</span> {</div>
<div class="line"><span class="lineno"> 166</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">TAT</a> = tat;</div>
<div class="line"><span class="lineno"> 167</span> }</div>
<div class="line"><span class="lineno"> 168</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 169</span> }</div>
<div class="line"><span class="lineno"> 170</span> <span class="comment">// else traverse the queue and update the values</span></div>
<div class="line"><span class="lineno"> 171</span> <span class="keywordflow">while</span> (ptr != NULL &amp;&amp; ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">ID</a> != <span class="keywordtype">id</span>)</div>
<div class="line"><span class="lineno"> 172</span> {</div>
<div class="line"><span class="lineno"> 173</span> ptr = ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 174</span> }</div>
<div class="line"><span class="lineno"> 175</span> <span class="keywordflow">if</span> (ct != 0)</div>
<div class="line"><span class="lineno"> 176</span> {</div>
<div class="line"><span class="lineno"> 177</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">CT</a> = ct;</div>
<div class="line"><span class="lineno"> 178</span> }</div>
<div class="line"><span class="lineno"> 179</span> <span class="keywordflow">if</span> (wt != 0)</div>
<div class="line"><span class="lineno"> 180</span> {</div>
<div class="line"><span class="lineno"> 181</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653">WT</a> = wt;</div>
<div class="line"><span class="lineno"> 182</span> }</div>
<div class="line"><span class="lineno"> 183</span> <span class="keywordflow">if</span> (tat != 0)</div>
<div class="line"><span class="lineno"> 184</span> {</div>
<div class="line"><span class="lineno"> 185</span> ptr-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">TAT</a> = tat;</div>
<div class="line"><span class="lineno"> 186</span> }</div>
<div class="line"><span class="lineno"> 187</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 188</span>}</div>
</div><!-- fragment -->
</div>
</div>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="../../dir_63185e90e67935ef3eb5903a044c89e2.html">process_scheduling_algorithms</a></li><li class="navelem"><a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html">non_preemptive_priority_scheduling.c</a></li>
<li class="footer">Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="../../doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.5 </li>
</ul>
</div>
</body>
</html>

View File

@ -0,0 +1,15 @@
var non__preemptive__priority__scheduling_8c =
[
[ "node", "d5/da1/structnode.html", "d5/da1/structnode" ],
[ "node", "d2/d87/non__preemptive__priority__scheduling_8c.html#af4aeda155dbe167f1c1cf38cb65bf324", null ],
[ "calculate_ct", "d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df", null ],
[ "calculate_tat", "d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756", null ],
[ "calculate_wt", "d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c", null ],
[ "compare", "d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09", null ],
[ "insert", "d2/d87/non__preemptive__priority__scheduling_8c.html#a5d0943b2e0e1b48b9c3a575a7f262c36", null ],
[ "l_length", "d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9", null ],
[ "main", "d2/d87/non__preemptive__priority__scheduling_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4", null ],
[ "show_list", "d2/d87/non__preemptive__priority__scheduling_8c.html#adeb04e9743495f14aa4ef78631b9253c", null ],
[ "test", "d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d", null ],
[ "update", "d2/d87/non__preemptive__priority__scheduling_8c.html#a9bc34d3b138bd0153a942cf6a8b31533", null ]
];

View File

@ -0,0 +1,6 @@
<map id="calculate_tat" name="calculate_tat">
<area shape="rect" id="node1" title="To calculate the average turn around time of all the processes." alt="" coords="5,31,101,56"/>
<area shape="rect" id="node2" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df" title="To calculate the average completion time of all the processes." alt="" coords="149,5,241,31"/>
<area shape="rect" id="node4" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" title="To length process queue." alt="" coords="292,55,359,80"/>
<area shape="rect" id="node3" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" title="To compare the priority of two processes based on their arrival time and priority." alt="" coords="289,5,361,31"/>
</map>

View File

@ -0,0 +1 @@
b01c2220573947fc9a5dee344d3f70f4

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.0.0 (20221023.0053)
-->
<!-- Title: calculate_tat Pages: 1 -->
<svg width="275pt" height="64pt"
viewBox="0.00 0.00 275.00 64.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 60)">
<title>calculate_tat</title>
<!-- Node1 -->
<g id="node1" class="node">
<title>Node1</title>
<g id="a_node1"><a xlink:title="To calculate the average turn around time of all the processes.">
<polygon fill="#999999" stroke="#666666" points="72,-37 0,-37 0,-18 72,-18 72,-37"/>
<text text-anchor="middle" x="36" y="-25" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_tat</text>
</a>
</g>
</g>
<!-- Node2 -->
<g id="node2" class="node">
<title>Node2</title>
<g id="a_node2"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df" target="_top" xlink:title="To calculate the average completion time of all the processes.">
<polygon fill="white" stroke="#666666" points="177,-56 108,-56 108,-37 177,-37 177,-56"/>
<text text-anchor="middle" x="142.5" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_ct</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node2 -->
<g id="edge1" class="edge">
<title>Node1&#45;&gt;Node2</title>
<path fill="none" stroke="#63b8ff" d="M72.38,-33.93C80.11,-35.34 88.38,-36.84 96.43,-38.31"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="95.62,-41.72 106.08,-40.06 96.87,-34.83 95.62,-41.72"/>
</g>
<!-- Node4 -->
<g id="node4" class="node">
<title>Node4</title>
<g id="a_node4"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" target="_top" xlink:title="To length process queue.">
<polygon fill="white" stroke="#666666" points="265,-19 215,-19 215,0 265,0 265,-19"/>
<text text-anchor="middle" x="240" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">l_length</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node4 -->
<g id="edge4" class="edge">
<title>Node1&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M72.19,-24.36C109.01,-21.08 166.5,-15.96 203.45,-12.67"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="203.52,-16.18 213.17,-11.8 202.9,-9.2 203.52,-16.18"/>
</g>
<!-- Node3 -->
<g id="node3" class="node">
<title>Node3</title>
<g id="a_node3"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" target="_top" xlink:title="To compare the priority of two processes based on their arrival time and priority.">
<polygon fill="white" stroke="#666666" points="267,-56 213,-56 213,-37 267,-37 267,-56"/>
<text text-anchor="middle" x="240" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">compare</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node3 -->
<g id="edge2" class="edge">
<title>Node2&#45;&gt;Node3</title>
<path fill="none" stroke="#63b8ff" d="M177.44,-46.5C185.13,-46.5 193.34,-46.5 201.18,-46.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="201.16,-50 211.16,-46.5 201.16,-43 201.16,-50"/>
</g>
<!-- Node2&#45;&gt;Node4 -->
<g id="edge3" class="edge">
<title>Node2&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M169.09,-36.58C179.81,-32.43 192.44,-27.54 204,-23.06"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="205.18,-26.36 213.24,-19.48 202.65,-19.83 205.18,-26.36"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,8 @@
<map id="test" name="test">
<area shape="rect" id="node1" title="Self&#45;test implementations." alt="" coords="5,56,49,81"/>
<area shape="rect" id="node2" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df" title="To calculate the average completion time of all the processes." alt="" coords="241,5,333,31"/>
<area shape="rect" id="node5" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756" title="To calculate the average turn around time of all the processes." alt="" coords="97,56,193,81"/>
<area shape="rect" id="node6" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c" title="To calculate the average waiting time of all the processes." alt="" coords="98,105,193,131"/>
<area shape="rect" id="node3" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" title="To compare the priority of two processes based on their arrival time and priority." alt="" coords="381,5,453,31"/>
<area shape="rect" id="node4" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" title="To length process queue." alt="" coords="384,56,451,81"/>
</map>

View File

@ -0,0 +1 @@
00dd6f2b9d38b12387604791b1277203

View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.0.0 (20221023.0053)
-->
<!-- Title: test Pages: 1 -->
<svg width="344pt" height="102pt"
viewBox="0.00 0.00 344.00 102.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 98)">
<title>test</title>
<!-- Node1 -->
<g id="node1" class="node">
<title>Node1</title>
<g id="a_node1"><a xlink:title="Self&#45;test implementations.">
<polygon fill="#999999" stroke="#666666" points="33,-56 0,-56 0,-37 33,-37 33,-56"/>
<text text-anchor="middle" x="16.5" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">test</text>
</a>
</g>
</g>
<!-- Node2 -->
<g id="node2" class="node">
<title>Node2</title>
<g id="a_node2"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df" target="_top" xlink:title="To calculate the average completion time of all the processes.">
<polygon fill="white" stroke="#666666" points="246,-94 177,-94 177,-75 246,-75 246,-94"/>
<text text-anchor="middle" x="211.5" y="-82" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_ct</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node2 -->
<g id="edge1" class="edge">
<title>Node1&#45;&gt;Node2</title>
<path fill="none" stroke="#63b8ff" d="M33.45,-53.42C43.48,-57.51 56.79,-62.47 69,-65.5 100.68,-73.37 137.21,-78.17 165.22,-80.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="164.87,-84.46 175.15,-81.92 165.53,-77.49 164.87,-84.46"/>
</g>
<!-- Node5 -->
<g id="node5" class="node">
<title>Node5</title>
<g id="a_node5"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756" target="_top" xlink:title="To calculate the average turn around time of all the processes.">
<polygon fill="white" stroke="#666666" points="141,-56 69,-56 69,-37 141,-37 141,-56"/>
<text text-anchor="middle" x="105" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_tat</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node5 -->
<g id="edge4" class="edge">
<title>Node1&#45;&gt;Node5</title>
<path fill="none" stroke="#63b8ff" d="M33.37,-46.5C40.22,-46.5 48.62,-46.5 57.22,-46.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="57,-50 67,-46.5 57,-43 57,-50"/>
</g>
<!-- Node6 -->
<g id="node6" class="node">
<title>Node6</title>
<g id="a_node6"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c" target="_top" xlink:title="To calculate the average waiting time of all the processes.">
<polygon fill="white" stroke="#666666" points="140.5,-19 69.5,-19 69.5,0 140.5,0 140.5,-19"/>
<text text-anchor="middle" x="105" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_wt</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node6 -->
<g id="edge7" class="edge">
<title>Node1&#45;&gt;Node6</title>
<path fill="none" stroke="#63b8ff" d="M33.37,-39.71C43.73,-35.28 57.66,-29.32 70.41,-23.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="71.52,-27.2 79.34,-20.05 68.77,-20.76 71.52,-27.2"/>
</g>
<!-- Node3 -->
<g id="node3" class="node">
<title>Node3</title>
<g id="a_node3"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" target="_top" xlink:title="To compare the priority of two processes based on their arrival time and priority.">
<polygon fill="white" stroke="#666666" points="336,-94 282,-94 282,-75 336,-75 336,-94"/>
<text text-anchor="middle" x="309" y="-82" font-family="Helvetica,sans-Serif" font-size="10.00">compare</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node3 -->
<g id="edge2" class="edge">
<title>Node2&#45;&gt;Node3</title>
<path fill="none" stroke="#63b8ff" d="M246.44,-84.5C254.13,-84.5 262.34,-84.5 270.18,-84.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="270.16,-88 280.16,-84.5 270.16,-81 270.16,-88"/>
</g>
<!-- Node4 -->
<g id="node4" class="node">
<title>Node4</title>
<g id="a_node4"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" target="_top" xlink:title="To length process queue.">
<polygon fill="white" stroke="#666666" points="334,-56 284,-56 284,-37 334,-37 334,-56"/>
<text text-anchor="middle" x="309" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">l_length</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node4 -->
<g id="edge3" class="edge">
<title>Node2&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M237.59,-74.52C248.51,-70.17 261.48,-65.01 273.3,-60.31"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="274.33,-63.66 282.33,-56.71 271.74,-57.16 274.33,-63.66"/>
</g>
<!-- Node5&#45;&gt;Node2 -->
<g id="edge5" class="edge">
<title>Node5&#45;&gt;Node2</title>
<path fill="none" stroke="#63b8ff" d="M133.46,-56.48C145.46,-60.85 159.73,-66.04 172.71,-70.76"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="171.21,-73.94 181.8,-74.07 173.6,-67.36 171.21,-73.94"/>
</g>
<!-- Node5&#45;&gt;Node4 -->
<g id="edge6" class="edge">
<title>Node5&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M141.19,-46.5C178.01,-46.5 235.5,-46.5 272.45,-46.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="272.16,-50 282.16,-46.5 272.16,-43 272.16,-50"/>
</g>
<!-- Node6&#45;&gt;Node2 -->
<g id="edge8" class="edge">
<title>Node6&#45;&gt;Node2</title>
<path fill="none" stroke="#63b8ff" d="M127.14,-19.46C131.81,-21.91 136.66,-24.65 141,-27.5 159.23,-39.47 178.27,-55.36 191.8,-67.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="189.31,-69.78 199.08,-73.86 193.98,-64.58 189.31,-69.78"/>
</g>
<!-- Node6&#45;&gt;Node4 -->
<g id="edge9" class="edge">
<title>Node6&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M140.73,-15.86C177.47,-22.59 235.17,-33.16 272.28,-39.96"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="271.6,-43.39 282.07,-41.75 272.86,-36.51 271.6,-43.39"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -0,0 +1,5 @@
<map id="calculate_ct" name="calculate_ct">
<area shape="rect" id="node1" title="To calculate the average completion time of all the processes." alt="" coords="5,31,97,56"/>
<area shape="rect" id="node2" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" title="To compare the priority of two processes based on their arrival time and priority." alt="" coords="145,5,217,31"/>
<area shape="rect" id="node3" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" title="To length process queue." alt="" coords="148,55,215,80"/>
</map>

View File

@ -0,0 +1 @@
208d7a1ab330d19f40924ce70cb8800e

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.0.0 (20221023.0053)
-->
<!-- Title: calculate_ct Pages: 1 -->
<svg width="167pt" height="64pt"
viewBox="0.00 0.00 167.00 64.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 60)">
<title>calculate_ct</title>
<!-- Node1 -->
<g id="node1" class="node">
<title>Node1</title>
<g id="a_node1"><a xlink:title="To calculate the average completion time of all the processes.">
<polygon fill="#999999" stroke="#666666" points="69,-37 0,-37 0,-18 69,-18 69,-37"/>
<text text-anchor="middle" x="34.5" y="-25" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_ct</text>
</a>
</g>
</g>
<!-- Node2 -->
<g id="node2" class="node">
<title>Node2</title>
<g id="a_node2"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" target="_top" xlink:title="To compare the priority of two processes based on their arrival time and priority.">
<polygon fill="white" stroke="#666666" points="159,-56 105,-56 105,-37 159,-37 159,-56"/>
<text text-anchor="middle" x="132" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">compare</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node2 -->
<g id="edge1" class="edge">
<title>Node1&#45;&gt;Node2</title>
<path fill="none" stroke="#63b8ff" d="M69.44,-34.25C77.22,-35.8 85.53,-37.45 93.46,-39.03"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="92.7,-42.45 103.19,-40.97 94.07,-35.58 92.7,-42.45"/>
</g>
<!-- Node3 -->
<g id="node3" class="node">
<title>Node3</title>
<g id="a_node3"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" target="_top" xlink:title="To length process queue.">
<polygon fill="white" stroke="#666666" points="157,-19 107,-19 107,0 157,0 157,-19"/>
<text text-anchor="middle" x="132" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">l_length</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node3 -->
<g id="edge2" class="edge">
<title>Node1&#45;&gt;Node3</title>
<path fill="none" stroke="#63b8ff" d="M69.44,-21.1C77.92,-19.51 87.03,-17.79 95.58,-16.18"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="96.1,-19.64 105.28,-14.35 94.81,-12.76 96.1,-19.64"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -0,0 +1,6 @@
<map id="calculate_wt" name="calculate_wt">
<area shape="rect" id="node1" title="To calculate the average waiting time of all the processes." alt="" coords="5,31,100,56"/>
<area shape="rect" id="node2" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df" title="To calculate the average completion time of all the processes." alt="" coords="148,5,240,31"/>
<area shape="rect" id="node4" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" title="To length process queue." alt="" coords="291,55,357,80"/>
<area shape="rect" id="node3" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" title="To compare the priority of two processes based on their arrival time and priority." alt="" coords="288,5,360,31"/>
</map>

View File

@ -0,0 +1 @@
6d7b5be9d6601289247b747f8a395973

View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.0.0 (20221023.0053)
-->
<!-- Title: calculate_wt Pages: 1 -->
<svg width="274pt" height="64pt"
viewBox="0.00 0.00 274.00 64.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 60)">
<title>calculate_wt</title>
<!-- Node1 -->
<g id="node1" class="node">
<title>Node1</title>
<g id="a_node1"><a xlink:title="To calculate the average waiting time of all the processes.">
<polygon fill="#999999" stroke="#666666" points="71,-37 0,-37 0,-18 71,-18 71,-37"/>
<text text-anchor="middle" x="35.5" y="-25" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_wt</text>
</a>
</g>
</g>
<!-- Node2 -->
<g id="node2" class="node">
<title>Node2</title>
<g id="a_node2"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df" target="_top" xlink:title="To calculate the average completion time of all the processes.">
<polygon fill="white" stroke="#666666" points="176,-56 107,-56 107,-37 176,-37 176,-56"/>
<text text-anchor="middle" x="141.5" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_ct</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node2 -->
<g id="edge1" class="edge">
<title>Node1&#45;&gt;Node2</title>
<path fill="none" stroke="#63b8ff" d="M71.42,-33.88C79.12,-35.29 87.38,-36.8 95.42,-38.26"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="94.6,-41.67 105.07,-40.03 95.86,-34.79 94.6,-41.67"/>
</g>
<!-- Node4 -->
<g id="node4" class="node">
<title>Node4</title>
<g id="a_node4"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" target="_top" xlink:title="To length process queue.">
<polygon fill="white" stroke="#666666" points="264,-19 214,-19 214,0 264,0 264,-19"/>
<text text-anchor="middle" x="239" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">l_length</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node4 -->
<g id="edge4" class="edge">
<title>Node1&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M71.14,-24.41C107.79,-21.13 165.35,-15.99 202.37,-12.68"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="202.46,-16.19 212.11,-11.81 201.84,-9.22 202.46,-16.19"/>
</g>
<!-- Node3 -->
<g id="node3" class="node">
<title>Node3</title>
<g id="a_node3"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" target="_top" xlink:title="To compare the priority of two processes based on their arrival time and priority.">
<polygon fill="white" stroke="#666666" points="266,-56 212,-56 212,-37 266,-37 266,-56"/>
<text text-anchor="middle" x="239" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">compare</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node3 -->
<g id="edge2" class="edge">
<title>Node2&#45;&gt;Node3</title>
<path fill="none" stroke="#63b8ff" d="M176.44,-46.5C184.13,-46.5 192.34,-46.5 200.18,-46.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="200.16,-50 210.16,-46.5 200.16,-43 200.16,-50"/>
</g>
<!-- Node2&#45;&gt;Node4 -->
<g id="edge3" class="edge">
<title>Node2&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M168.09,-36.58C178.81,-32.43 191.44,-27.54 203,-23.06"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="204.18,-26.36 212.24,-19.48 201.65,-19.83 204.18,-26.36"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,9 @@
<map id="main" name="main">
<area shape="rect" id="node1" title="Main function." alt="" coords="5,56,56,81"/>
<area shape="rect" id="node2" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d" title="Self&#45;test implementations." alt="" coords="104,56,148,81"/>
<area shape="rect" id="node3" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df" title="To calculate the average completion time of all the processes." alt="" coords="340,5,432,31"/>
<area shape="rect" id="node6" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756" title="To calculate the average turn around time of all the processes." alt="" coords="196,56,292,81"/>
<area shape="rect" id="node7" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c" title="To calculate the average waiting time of all the processes." alt="" coords="197,105,291,131"/>
<area shape="rect" id="node4" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" title="To compare the priority of two processes based on their arrival time and priority." alt="" coords="480,5,552,31"/>
<area shape="rect" id="node5" href="$d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" title="To length process queue." alt="" coords="483,56,549,81"/>
</map>

View File

@ -0,0 +1 @@
1425034dc8530cb450be34733e93847a

View File

@ -0,0 +1,135 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.0.0 (20221023.0053)
-->
<!-- Title: main Pages: 1 -->
<svg width="418pt" height="102pt"
viewBox="0.00 0.00 418.00 102.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 98)">
<title>main</title>
<!-- Node1 -->
<g id="node1" class="node">
<title>Node1</title>
<g id="a_node1"><a xlink:title="Main function.">
<polygon fill="#999999" stroke="#666666" points="38,-56 0,-56 0,-37 38,-37 38,-56"/>
<text text-anchor="middle" x="19" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">main</text>
</a>
</g>
</g>
<!-- Node2 -->
<g id="node2" class="node">
<title>Node2</title>
<g id="a_node2"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d" target="_top" xlink:title="Self&#45;test implementations.">
<polygon fill="white" stroke="#666666" points="107,-56 74,-56 74,-37 107,-37 107,-56"/>
<text text-anchor="middle" x="90.5" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">test</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node2 -->
<g id="edge1" class="edge">
<title>Node1&#45;&gt;Node2</title>
<path fill="none" stroke="#63b8ff" d="M38.26,-46.5C45.72,-46.5 54.5,-46.5 62.66,-46.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="62.44,-50 72.44,-46.5 62.44,-43 62.44,-50"/>
</g>
<!-- Node3 -->
<g id="node3" class="node">
<title>Node3</title>
<g id="a_node3"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df" target="_top" xlink:title="To calculate the average completion time of all the processes.">
<polygon fill="white" stroke="#666666" points="320,-94 251,-94 251,-75 320,-75 320,-94"/>
<text text-anchor="middle" x="285.5" y="-82" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_ct</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node3 -->
<g id="edge2" class="edge">
<title>Node2&#45;&gt;Node3</title>
<path fill="none" stroke="#63b8ff" d="M107.45,-53.42C117.48,-57.51 130.79,-62.47 143,-65.5 174.68,-73.37 211.21,-78.17 239.22,-80.98"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="238.87,-84.46 249.15,-81.92 239.53,-77.49 238.87,-84.46"/>
</g>
<!-- Node6 -->
<g id="node6" class="node">
<title>Node6</title>
<g id="a_node6"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756" target="_top" xlink:title="To calculate the average turn around time of all the processes.">
<polygon fill="white" stroke="#666666" points="215,-56 143,-56 143,-37 215,-37 215,-56"/>
<text text-anchor="middle" x="179" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_tat</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node6 -->
<g id="edge5" class="edge">
<title>Node2&#45;&gt;Node6</title>
<path fill="none" stroke="#63b8ff" d="M107.37,-46.5C114.22,-46.5 122.62,-46.5 131.22,-46.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="131,-50 141,-46.5 131,-43 131,-50"/>
</g>
<!-- Node7 -->
<g id="node7" class="node">
<title>Node7</title>
<g id="a_node7"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c" target="_top" xlink:title="To calculate the average waiting time of all the processes.">
<polygon fill="white" stroke="#666666" points="214.5,-19 143.5,-19 143.5,0 214.5,0 214.5,-19"/>
<text text-anchor="middle" x="179" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">calculate_wt</text>
</a>
</g>
</g>
<!-- Node2&#45;&gt;Node7 -->
<g id="edge8" class="edge">
<title>Node2&#45;&gt;Node7</title>
<path fill="none" stroke="#63b8ff" d="M107.37,-39.71C117.73,-35.28 131.66,-29.32 144.41,-23.87"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="145.52,-27.2 153.34,-20.05 142.77,-20.76 145.52,-27.2"/>
</g>
<!-- Node4 -->
<g id="node4" class="node">
<title>Node4</title>
<g id="a_node4"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09" target="_top" xlink:title="To compare the priority of two processes based on their arrival time and priority.">
<polygon fill="white" stroke="#666666" points="410,-94 356,-94 356,-75 410,-75 410,-94"/>
<text text-anchor="middle" x="383" y="-82" font-family="Helvetica,sans-Serif" font-size="10.00">compare</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node4 -->
<g id="edge3" class="edge">
<title>Node3&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M320.44,-84.5C328.13,-84.5 336.34,-84.5 344.18,-84.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="344.16,-88 354.16,-84.5 344.16,-81 344.16,-88"/>
</g>
<!-- Node5 -->
<g id="node5" class="node">
<title>Node5</title>
<g id="a_node5"><a xlink:href="../../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9" target="_top" xlink:title="To length process queue.">
<polygon fill="white" stroke="#666666" points="408,-56 358,-56 358,-37 408,-37 408,-56"/>
<text text-anchor="middle" x="383" y="-44" font-family="Helvetica,sans-Serif" font-size="10.00">l_length</text>
</a>
</g>
</g>
<!-- Node3&#45;&gt;Node5 -->
<g id="edge4" class="edge">
<title>Node3&#45;&gt;Node5</title>
<path fill="none" stroke="#63b8ff" d="M311.59,-74.52C322.51,-70.17 335.48,-65.01 347.3,-60.31"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="348.33,-63.66 356.33,-56.71 345.74,-57.16 348.33,-63.66"/>
</g>
<!-- Node6&#45;&gt;Node3 -->
<g id="edge6" class="edge">
<title>Node6&#45;&gt;Node3</title>
<path fill="none" stroke="#63b8ff" d="M207.46,-56.48C219.46,-60.85 233.73,-66.04 246.71,-70.76"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="245.21,-73.94 255.8,-74.07 247.6,-67.36 245.21,-73.94"/>
</g>
<!-- Node6&#45;&gt;Node5 -->
<g id="edge7" class="edge">
<title>Node6&#45;&gt;Node5</title>
<path fill="none" stroke="#63b8ff" d="M215.19,-46.5C252.01,-46.5 309.5,-46.5 346.45,-46.5"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="346.16,-50 356.16,-46.5 346.16,-43 346.16,-50"/>
</g>
<!-- Node7&#45;&gt;Node3 -->
<g id="edge9" class="edge">
<title>Node7&#45;&gt;Node3</title>
<path fill="none" stroke="#63b8ff" d="M201.14,-19.46C205.81,-21.91 210.66,-24.65 215,-27.5 233.23,-39.47 252.27,-55.36 265.8,-67.32"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="263.31,-69.78 273.08,-73.86 267.98,-64.58 263.31,-69.78"/>
</g>
<!-- Node7&#45;&gt;Node5 -->
<g id="edge10" class="edge">
<title>Node7&#45;&gt;Node5</title>
<path fill="none" stroke="#63b8ff" d="M214.73,-15.86C251.47,-22.59 309.17,-33.16 346.28,-39.96"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="345.6,-43.39 356.07,-41.75 346.86,-36.51 345.6,-43.39"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

@ -278,7 +278,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 215</span> <span class="keywordflow">if</span> (tmp-&gt;ptr == ptrToFree)</div>
<div class="line"><span class="lineno"> 216</span> {</div>
<div class="line"><span class="lineno"> 217</span> toFree = tmp;</div>
<div class="line"><span class="lineno"> 218</span> <a class="code hl_variable" href="../../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3">memoryInformation</a> = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 218</span> <a class="code hl_variable" href="../../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3">memoryInformation</a> = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 219</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(toFree-&gt;<a class="code hl_variable" href="../../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde">ptr</a>);</div>
<div class="line"><span class="lineno"> 220</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(toFree);</div>
<div class="line"><span class="lineno"> 221</span> <span class="keywordflow">if</span> (<a class="code hl_variable" href="../../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3">memoryInformation</a>)</div>
@ -294,7 +294,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 231</span> <span class="keywordflow">if</span> (tmp-&gt;ptr == ptrToFree) <span class="comment">// If we found the pointer that must be freed</span></div>
<div class="line"><span class="lineno"> 232</span> {</div>
<div class="line"><span class="lineno"> 233</span> toFree = tmp;</div>
<div class="line"><span class="lineno"> 234</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 234</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 235</span> previous = toFree-&gt;<a class="code hl_variable" href="../../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3">previous</a>;</div>
<div class="line"><span class="lineno"> 236</span> </div>
<div class="line"><span class="lineno"> 237</span> <span class="keywordflow">if</span> (previous)</div>
@ -314,13 +314,14 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 251</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(toFree);</div>
<div class="line"><span class="lineno"> 252</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 253</span> }</div>
<div class="line"><span class="lineno"> 254</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 254</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 255</span> }</div>
<div class="line"><span class="lineno"> 256</span>}</div>
<div class="ttc" id="astruct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n_html"><div class="ttname"><a href="../../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html">MEMORY_INFORMATION</a></div><div class="ttdoc">For the malloc, calloc and free functions.</div><div class="ttdef"><b>Definition:</b> malloc_dbg.c:21</div></div>
<div class="ttc" id="astruct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n_html_a1cec46413acf776e3ee2b0b9241490c3"><div class="ttname"><a href="../../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3">MEMORY_INFORMATION::previous</a></div><div class="ttdeci">struct MEMORY_INFORMATION * previous</div><div class="ttdoc">Previous element in the list.</div><div class="ttdef"><b>Definition:</b> malloc_dbg.c:28</div></div>
<div class="ttc" id="astruct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n_html_a6b0971c1415de6e0123b8d0d0a626fde"><div class="ttname"><a href="../../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde">MEMORY_INFORMATION::ptr</a></div><div class="ttdeci">void * ptr</div><div class="ttdoc">Pointer returned by malloc / calloc.</div><div class="ttdef"><b>Definition:</b> malloc_dbg.c:22</div></div>
<div class="ttc" id="astruct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n_html_aa296b903d0e2ac54acaa7c305bae8007"><div class="ttname"><a href="../../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007">MEMORY_INFORMATION::next</a></div><div class="ttdeci">struct MEMORY_INFORMATION * next</div><div class="ttdoc">Next element in the list.</div><div class="ttdef"><b>Definition:</b> malloc_dbg.c:27</div></div>
<div class="ttc" id="astructnode_html_a111a569ab2765add9b91c9f94cf9f063"><div class="ttname"><a href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node::next</a></div><div class="ttdeci">struct node * next</div><div class="ttdoc">pointer to the node</div><div class="ttdef"><b>Definition:</b> bfs.c:24</div></div>
</div><!-- fragment -->
</div>
</div>
@ -452,7 +453,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 280</span> printf(<span class="stringliteral">&quot;address : 0x%p in %s\t%s:%d\n&quot;</span>, tmp-&gt;ptr, tmp-&gt;functionName, tmp-&gt;fileName, tmp-&gt;line);</div>
<div class="line"><span class="lineno"> 281</span> printf(<span class="stringliteral">&quot;\n====================================\n&quot;</span>);</div>
<div class="line"><span class="lineno"> 282</span> sum += tmp-&gt;bytes;</div>
<div class="line"><span class="lineno"> 283</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 283</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 284</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(previous);</div>
<div class="line"><span class="lineno"> 285</span> nbBlocks++;</div>
<div class="line"><span class="lineno"> 286</span> }</div>

View File

@ -0,0 +1,7 @@
<map id="process_scheduling_algorithms/non_preemptive_priority_scheduling.c" name="process_scheduling_algorithms/non_preemptive_priority_scheduling.c">
<area shape="rect" id="node1" title="Non&#45;Preemptive Priority Scheduling is a scheduling algorithm that selects the tasks to execute based ..." alt="" coords="89,5,274,60"/>
<area shape="rect" id="node2" title=" " alt="" coords="5,108,75,133"/>
<area shape="rect" id="node3" title=" " alt="" coords="99,108,173,133"/>
<area shape="rect" id="node4" title=" " alt="" coords="197,108,259,133"/>
<area shape="rect" id="node5" title=" " alt="" coords="283,108,347,133"/>
</map>

View File

@ -0,0 +1 @@
ebbd033a5671795c16b6e87936892373

View File

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 7.0.0 (20221023.0053)
-->
<!-- Title: process_scheduling_algorithms/non_preemptive_priority_scheduling.c Pages: 1 -->
<svg width="264pt" height="104pt"
viewBox="0.00 0.00 264.00 104.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 100)">
<title>process_scheduling_algorithms/non_preemptive_priority_scheduling.c</title>
<!-- Node1 -->
<g id="node1" class="node">
<title>Node1</title>
<g id="a_node1"><a xlink:title="Non&#45;Preemptive Priority Scheduling is a scheduling algorithm that selects the tasks to execute based ...">
<polygon fill="#999999" stroke="#666666" points="201.5,-96 62.5,-96 62.5,-55 201.5,-55 201.5,-96"/>
<text text-anchor="start" x="70.5" y="-84" font-family="Helvetica,sans-Serif" font-size="10.00">process_scheduling</text>
<text text-anchor="start" x="70.5" y="-73" font-family="Helvetica,sans-Serif" font-size="10.00">_algorithms/non_preemptive</text>
<text text-anchor="middle" x="132" y="-62" font-family="Helvetica,sans-Serif" font-size="10.00">_priority_scheduling.c</text>
</a>
</g>
</g>
<!-- Node2 -->
<g id="node2" class="node">
<title>Node2</title>
<g id="a_node2"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="52,-19 0,-19 0,0 52,0 52,-19"/>
<text text-anchor="middle" x="26" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">assert.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node2 -->
<g id="edge1" class="edge">
<title>Node1&#45;&gt;Node2</title>
<path fill="none" stroke="#63b8ff" d="M99.04,-54.6C83.29,-45.09 64.78,-33.91 50.33,-25.19"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="52.29,-22.29 41.92,-20.11 48.67,-28.28 52.29,-22.29"/>
</g>
<!-- Node3 -->
<g id="node3" class="node">
<title>Node3</title>
<g id="a_node3"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="126,-19 70,-19 70,0 126,0 126,-19"/>
<text text-anchor="middle" x="98" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">stdbool.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node3 -->
<g id="edge2" class="edge">
<title>Node1&#45;&gt;Node3</title>
<path fill="none" stroke="#63b8ff" d="M121.43,-54.6C117.14,-46.52 112.2,-37.23 107.97,-29.27"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="111.09,-27.69 103.31,-20.5 104.91,-30.97 111.09,-27.69"/>
</g>
<!-- Node4 -->
<g id="node4" class="node">
<title>Node4</title>
<g id="a_node4"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="190,-19 144,-19 144,0 190,0 190,-19"/>
<text text-anchor="middle" x="167" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">stdio.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node4 -->
<g id="edge3" class="edge">
<title>Node1&#45;&gt;Node4</title>
<path fill="none" stroke="#63b8ff" d="M142.88,-54.6C147.35,-46.43 152.5,-37.02 156.88,-29"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="159.81,-30.94 161.54,-20.49 153.67,-27.58 159.81,-30.94"/>
</g>
<!-- Node5 -->
<g id="node5" class="node">
<title>Node5</title>
<g id="a_node5"><a xlink:title=" ">
<polygon fill="#e0e0e0" stroke="#999999" points="256,-19 208,-19 208,0 256,0 256,-19"/>
<text text-anchor="middle" x="232" y="-7" font-family="Helvetica,sans-Serif" font-size="10.00">stdlib.h</text>
</a>
</g>
</g>
<!-- Node1&#45;&gt;Node5 -->
<g id="edge4" class="edge">
<title>Node1&#45;&gt;Node5</title>
<path fill="none" stroke="#63b8ff" d="M163.09,-54.6C177.8,-45.19 195.08,-34.13 208.65,-25.44"/>
<polygon fill="#63b8ff" stroke="#63b8ff" points="210.39,-28.49 216.93,-20.15 206.62,-22.59 210.39,-28.49"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -486,6 +486,11 @@ Numerical Methods</h1>
<li><a href="https://github.com/TheAlgorithms/C/blob/HEAD/numerical_methods/variance.c" target="_blank">Variance</a></li>
</ul>
<h1><a class="anchor" id="autotoc_md60"></a>
Process Scheduling Algorithms</h1>
<ul>
<li><a href="https://github.com/TheAlgorithms/C/blob/master/process_scheduling_algorithms/non_preemptive_priority_scheduling.c" target="_blank">Non Preemptive Priority Scheduling</a></li>
</ul>
<h1><a class="anchor" id="autotoc_md61"></a>
Project Euler</h1>
<ul>
<li>Problem 1<ul>
@ -592,7 +597,7 @@ Project Euler</h1>
</ul>
</li>
</ul>
<h1><a class="anchor" id="autotoc_md61"></a>
<h1><a class="anchor" id="autotoc_md62"></a>
Searching</h1>
<ul>
<li><a href="https://github.com/TheAlgorithms/C/blob/HEAD/searching/binary_search.c" target="_blank">Binary Search</a></li>
@ -613,7 +618,7 @@ Searching</h1>
<li><a href="https://github.com/TheAlgorithms/C/blob/HEAD/searching/sentinel_linear_search.c" target="_blank">Sentinel Linear Search</a></li>
<li><a href="https://github.com/TheAlgorithms/C/blob/HEAD/searching/ternary_search.c" target="_blank">Ternary Search</a></li>
</ul>
<h1><a class="anchor" id="autotoc_md62"></a>
<h1><a class="anchor" id="autotoc_md63"></a>
Sorting</h1>
<ul>
<li><a href="https://github.com/TheAlgorithms/C/blob/HEAD/sorting/bead_sort.c" target="_blank">Bead Sort</a></li>

View File

@ -148,6 +148,7 @@ int&#160;</td><td class="memItemRight" valign="bottom"><b>vertex</b></td></tr>
<tr class="separator:ab4b1f345158daee0725acecd5ba817b1"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a111a569ab2765add9b91c9f94cf9f063"><td class="memItemLeft" align="right" valign="top"><a id="a111a569ab2765add9b91c9f94cf9f063" name="a111a569ab2765add9b91c9f94cf9f063"></a>
struct <a class="el" href="../../d5/da1/structnode.html">node</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>next</b></td></tr>
<tr class="memdesc:a111a569ab2765add9b91c9f94cf9f063"><td class="mdescLeft">&#160;</td><td class="mdescRight">pointer to the node <br /></td></tr>
<tr class="separator:a111a569ab2765add9b91c9f94cf9f063"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac8973feda870a119ccdc25910254db0c"><td class="memItemLeft" align="right" valign="top"><a id="ac8973feda870a119ccdc25910254db0c" name="ac8973feda870a119ccdc25910254db0c"></a>
int&#160;</td><td class="memItemRight" valign="bottom"><b>info</b></td></tr>
@ -161,13 +162,44 @@ struct <a class="el" href="../../d5/da1/structnode.html">node</a> *&#160;</td><t
<tr class="memitem:a6f9100a3fe81d82776ce47ecdba94691"><td class="memItemLeft" align="right" valign="top"><a id="a6f9100a3fe81d82776ce47ecdba94691" name="a6f9100a3fe81d82776ce47ecdba94691"></a>
char&#160;</td><td class="memItemRight" valign="bottom"><b>data</b></td></tr>
<tr class="separator:a6f9100a3fe81d82776ce47ecdba94691"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac0c8b57ac0a76d72588561c81481c454"><td class="memItemLeft" align="right" valign="top"><a id="ac0c8b57ac0a76d72588561c81481c454" name="ac0c8b57ac0a76d72588561c81481c454"></a>
int&#160;</td><td class="memItemRight" valign="bottom"><b>ID</b></td></tr>
<tr class="memdesc:ac0c8b57ac0a76d72588561c81481c454"><td class="mdescLeft">&#160;</td><td class="mdescRight">ID of the process node. <br /></td></tr>
<tr class="separator:ac0c8b57ac0a76d72588561c81481c454"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5507c3c76ddbda9c482749f3a8a8f0cc"><td class="memItemLeft" align="right" valign="top"><a id="a5507c3c76ddbda9c482749f3a8a8f0cc" name="a5507c3c76ddbda9c482749f3a8a8f0cc"></a>
int&#160;</td><td class="memItemRight" valign="bottom"><b>AT</b></td></tr>
<tr class="memdesc:a5507c3c76ddbda9c482749f3a8a8f0cc"><td class="mdescLeft">&#160;</td><td class="mdescRight">Arrival Time of the process node. <br /></td></tr>
<tr class="separator:a5507c3c76ddbda9c482749f3a8a8f0cc"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac0a6453f996d4c362c015fd4348ecc6e"><td class="memItemLeft" align="right" valign="top"><a id="ac0a6453f996d4c362c015fd4348ecc6e" name="ac0a6453f996d4c362c015fd4348ecc6e"></a>
int&#160;</td><td class="memItemRight" valign="bottom"><b>BT</b></td></tr>
<tr class="memdesc:ac0a6453f996d4c362c015fd4348ecc6e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Burst Time of the process node. <br /></td></tr>
<tr class="separator:ac0a6453f996d4c362c015fd4348ecc6e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a44e51013eb31fc1f17866ca9fe8ac75b"><td class="memItemLeft" align="right" valign="top"><a id="a44e51013eb31fc1f17866ca9fe8ac75b" name="a44e51013eb31fc1f17866ca9fe8ac75b"></a>
int&#160;</td><td class="memItemRight" valign="bottom"><b>priority</b></td></tr>
<tr class="memdesc:a44e51013eb31fc1f17866ca9fe8ac75b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Priority of the process node. <br /></td></tr>
<tr class="separator:a44e51013eb31fc1f17866ca9fe8ac75b"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aece40a25d30d3e0d2135007642b64882"><td class="memItemLeft" align="right" valign="top"><a id="aece40a25d30d3e0d2135007642b64882" name="aece40a25d30d3e0d2135007642b64882"></a>
int&#160;</td><td class="memItemRight" valign="bottom"><b>CT</b></td></tr>
<tr class="memdesc:aece40a25d30d3e0d2135007642b64882"><td class="mdescLeft">&#160;</td><td class="mdescRight">Completion Time of the process node. <br /></td></tr>
<tr class="separator:aece40a25d30d3e0d2135007642b64882"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a878d22393f374f3861035e35b9edd653"><td class="memItemLeft" align="right" valign="top"><a id="a878d22393f374f3861035e35b9edd653" name="a878d22393f374f3861035e35b9edd653"></a>
int&#160;</td><td class="memItemRight" valign="bottom"><b>WT</b></td></tr>
<tr class="memdesc:a878d22393f374f3861035e35b9edd653"><td class="mdescLeft">&#160;</td><td class="mdescRight">Waiting Time of the process node. <br /></td></tr>
<tr class="separator:a878d22393f374f3861035e35b9edd653"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abbe30696293849bebed90520b8cf7ba3"><td class="memItemLeft" align="right" valign="top"><a id="abbe30696293849bebed90520b8cf7ba3" name="abbe30696293849bebed90520b8cf7ba3"></a>
int&#160;</td><td class="memItemRight" valign="bottom"><b>TAT</b></td></tr>
<tr class="memdesc:abbe30696293849bebed90520b8cf7ba3"><td class="mdescLeft">&#160;</td><td class="mdescRight">Turn Around Time of the process node. <br /></td></tr>
<tr class="separator:abbe30696293849bebed90520b8cf7ba3"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p ><a class="el" href="../../db/d8b/struct_node.html" title="Node, the basic data structure of the tree.">Node</a>, the basic data structure in the tree. </p>
<p >for assert</p>
<p >Kyler Smith, 2017 <a class="el" href="../../dd/d10/struct_stack.html" title="for printf() and scanf()">Stack</a> data structure implementation.</p>
<p >INCLUDES.</p>
<p >Defining the structure of the node which contains 'data' (type : integer), two pointers 'next' and 'pre' (type : struct node).</p>
<p >creating a stucture with 'data'(type:int), two pointers 'next','pre' (type: struct node) .</p>
<p >for boolean data type for IO operations (<code>printf</code>) for memory allocation eg: <code>malloc</code>, <code>realloc</code>, <code>free</code>, <code>exit</code></p>
<p >Structure to represent a process </p>
</div><hr/>The documentation for this struct was generated from the following files:<ul>
<li>data_structures/binary_trees/<a class="el" href="../../da/d02/binary__search__tree_8c.html">binary_search_tree.c</a></li>
<li>data_structures/binary_trees/create_node.c</li>
@ -186,6 +218,7 @@ char&#160;</td><td class="memItemRight" valign="bottom"><b>data</b></td></tr>
<li>data_structures/queue/<a class="el" href="../../d1/dbe/include_8h_source.html">include.h</a></li>
<li>data_structures/stack.c</li>
<li>data_structures/stack/parenthesis.c</li>
<li>process_scheduling_algorithms/<a class="el" href="../../d2/d87/non__preemptive__priority__scheduling_8c.html">non_preemptive_priority_scheduling.c</a></li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->

View File

@ -1,6 +1,14 @@
var structnode =
[
[ "AT", "d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc", null ],
[ "BT", "d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e", null ],
[ "CT", "d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882", null ],
[ "data", "d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2", null ],
[ "ID", "d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454", null ],
[ "left", "d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0", null ],
[ "right", "d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c", null ]
[ "next", "d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063", null ],
[ "priority", "d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b", null ],
[ "right", "d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c", null ],
[ "TAT", "d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3", null ],
[ "WT", "d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653", null ]
];

View File

@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('d6/d77/md_leetcode__d_i_r_e_c_t_o_r_y.
<div class="headertitle"><div class="title">LeetCode </div></div>
</div><!--header-->
<div class="contents">
<div class="textblock"><h2><a class="anchor" id="autotoc_md67"></a>
<div class="textblock"><h2><a class="anchor" id="autotoc_md68"></a>
LeetCode Algorithm</h2>
<table class="markdownTable">
<tr class="markdownTableHead">

View File

@ -101,7 +101,7 @@ $(document).ready(function(){initNavTree('d7/db5/md_exercism__r_e_a_d_m_e.html',
</div><!--header-->
<div class="contents">
<div class="textblock"><p >This directory contains some sample solutions for <b>exercism.io</b></p>
<h2><a class="anchor" id="autotoc_md64"></a>
<h2><a class="anchor" id="autotoc_md65"></a>
Overview</h2>
<p >In this directory you will find (in the right order):</p><ul>
<li>hello-world</li>

View File

@ -183,7 +183,7 @@ Functions</h2></td></tr>
<p >Function: binary_search.</p>
<p >algorithm that search the index of the given item</p>
<p >recursive function that search the given element in </p>
<h2><a class="anchor" id="autotoc_md80"></a>
<h2><a class="anchor" id="autotoc_md81"></a>
the array using the &lt;a href="https://github.com/TheAlgorithms/Algorithms-Explanation/blob/master/en/Search%20Algorithms/Binary%20Search.md" target="_blank" &gt;Binary Search&lt;/a&gt;</h2>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
@ -253,7 +253,7 @@ Here is the call graph for this function:</div>
<p >Function: exponential_search.</p>
<p >algorithm that search the index of the given item</p>
<p >recursive function that take an array and quickly find the range </p>
<h2><a class="anchor" id="autotoc_md79"></a>
<h2><a class="anchor" id="autotoc_md80"></a>
where to apply the binary search algorithm to find the given element</h2>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">

View File

@ -418,11 +418,12 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 111</span> </div>
<div class="line"><span class="lineno"> 112</span> <span class="keywordflow">while</span> (counter != elemPos)</div>
<div class="line"><span class="lineno"> 113</span> {</div>
<div class="line"><span class="lineno"> 114</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 114</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 115</span> counter++;</div>
<div class="line"><span class="lineno"> 116</span> }</div>
<div class="line"><span class="lineno"> 117</span> tmp-&gt;bytes += bytes;</div>
<div class="line"><span class="lineno"> 118</span>}</div>
<div class="ttc" id="astructnode_html_a111a569ab2765add9b91c9f94cf9f063"><div class="ttname"><a href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node::next</a></div><div class="ttdeci">struct node * next</div><div class="ttdoc">pointer to the node</div><div class="ttdef"><b>Definition:</b> bfs.c:24</div></div>
</div><!-- fragment -->
</div>
</div>
@ -459,7 +460,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 215</span> <span class="keywordflow">if</span> (tmp-&gt;ptr == ptrToFree)</div>
<div class="line"><span class="lineno"> 216</span> {</div>
<div class="line"><span class="lineno"> 217</span> toFree = tmp;</div>
<div class="line"><span class="lineno"> 218</span> <a class="code hl_variable" href="../../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3">memoryInformation</a> = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 218</span> <a class="code hl_variable" href="../../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3">memoryInformation</a> = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 219</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(toFree-&gt;<a class="code hl_variable" href="../../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde">ptr</a>);</div>
<div class="line"><span class="lineno"> 220</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(toFree);</div>
<div class="line"><span class="lineno"> 221</span> <span class="keywordflow">if</span> (<a class="code hl_variable" href="../../db/d84/malloc__dbg_8c.html#afebd751704cd878d2e4b88499519c6e3">memoryInformation</a>)</div>
@ -475,7 +476,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 231</span> <span class="keywordflow">if</span> (tmp-&gt;ptr == ptrToFree) <span class="comment">// If we found the pointer that must be freed</span></div>
<div class="line"><span class="lineno"> 232</span> {</div>
<div class="line"><span class="lineno"> 233</span> toFree = tmp;</div>
<div class="line"><span class="lineno"> 234</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 234</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 235</span> previous = toFree-&gt;<a class="code hl_variable" href="../../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3">previous</a>;</div>
<div class="line"><span class="lineno"> 236</span> </div>
<div class="line"><span class="lineno"> 237</span> <span class="keywordflow">if</span> (previous)</div>
@ -495,7 +496,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 251</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(toFree);</div>
<div class="line"><span class="lineno"> 252</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 253</span> }</div>
<div class="line"><span class="lineno"> 254</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 254</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 255</span> }</div>
<div class="line"><span class="lineno"> 256</span>}</div>
</div><!-- fragment -->
@ -550,7 +551,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 91</span> <span class="keywordflow">return</span> counter;</div>
<div class="line"><span class="lineno"> 92</span> }</div>
<div class="line"><span class="lineno"> 93</span> }</div>
<div class="line"><span class="lineno"> 94</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 94</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 95</span> counter++;</div>
<div class="line"><span class="lineno"> 96</span> }</div>
<div class="line"><span class="lineno"> 97</span> <span class="keywordflow">return</span> -1;</div>
@ -685,7 +686,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 280</span> printf(<span class="stringliteral">&quot;address : 0x%p in %s\t%s:%d\n&quot;</span>, tmp-&gt;ptr, tmp-&gt;functionName, tmp-&gt;fileName, tmp-&gt;line);</div>
<div class="line"><span class="lineno"> 281</span> printf(<span class="stringliteral">&quot;\n====================================\n&quot;</span>);</div>
<div class="line"><span class="lineno"> 282</span> sum += tmp-&gt;bytes;</div>
<div class="line"><span class="lineno"> 283</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 283</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 284</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(previous);</div>
<div class="line"><span class="lineno"> 285</span> nbBlocks++;</div>
<div class="line"><span class="lineno"> 286</span> }</div>

View File

@ -175,13 +175,14 @@ Functions</h2></td></tr>
<div class="line"><span class="lineno"> 74</span> <span class="keywordflow">if</span> (!head)</div>
<div class="line"><span class="lineno"> 75</span> <span class="keywordflow">return</span>;</div>
<div class="line"><span class="lineno"> 76</span> </div>
<div class="line"><span class="lineno"> 77</span> <span class="keywordflow">if</span> (head-&gt;next)</div>
<div class="line"><span class="lineno"> 78</span> <a class="code hl_function" href="../../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d">free_memory</a>(head-&gt;next);</div>
<div class="line"><span class="lineno"> 77</span> <span class="keywordflow">if</span> (head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>)</div>
<div class="line"><span class="lineno"> 78</span> <a class="code hl_function" href="../../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d">free_memory</a>(head-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>);</div>
<div class="line"><span class="lineno"> 79</span> </div>
<div class="line"><span class="lineno"> 80</span> <a class="code hl_define" href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a>(head);</div>
<div class="line"><span class="lineno"> 81</span>}</div>
<div class="ttc" id="acantor__set_8c_html_a85df3c64a683100ac6246e1e034df43d"><div class="ttname"><a href="../../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d">free_memory</a></div><div class="ttdeci">void free_memory(CantorSet *head)</div><div class="ttdoc">Clear memory allocated by propagate function.</div><div class="ttdef"><b>Definition:</b> cantor_set.c:72</div></div>
<div class="ttc" id="amalloc__dbg_8h_html_a9cc854374299a1dd933bf62029761768"><div class="ttname"><a href="../../d2/ddd/malloc__dbg_8h.html#a9cc854374299a1dd933bf62029761768">free</a></div><div class="ttdeci">#define free(ptr)</div><div class="ttdoc">This macro replace the standard free function with free_dbg.</div><div class="ttdef"><b>Definition:</b> malloc_dbg.h:26</div></div>
<div class="ttc" id="astructnode_html_a111a569ab2765add9b91c9f94cf9f063"><div class="ttname"><a href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node::next</a></div><div class="ttdeci">struct node * next</div><div class="ttdoc">pointer to the node</div><div class="ttdef"><b>Definition:</b> bfs.c:24</div></div>
</div><!-- fragment --><div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
@ -239,7 +240,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 103</span> <span class="keywordflow">return</span> -1;</div>
<div class="line"><span class="lineno"> 104</span> }</div>
<div class="line"><span class="lineno"> 105</span> </div>
<div class="line"><span class="lineno"> 106</span> <a class="code hl_struct" href="../../d9/dd7/struct__cantor__set.html">CantorSet</a> head = {.start = start_num, .end = end_num, .next = NULL};</div>
<div class="line"><span class="lineno"> 106</span> <a class="code hl_struct" href="../../d9/dd7/struct__cantor__set.html">CantorSet</a> head = {.start = start_num, .end = end_num, .<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = NULL};</div>
<div class="line"><span class="lineno"> 107</span> </div>
<div class="line"><span class="lineno"> 108</span> <span class="comment">// loop to propagate each level from top to bottom</span></div>
<div class="line"><span class="lineno"> 109</span> <span class="keywordflow">for</span> (<span class="keywordtype">int</span> i = 0; i &lt; levels; i++)</div>
@ -253,7 +254,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 117</span> <a class="code hl_function" href="../../dc/d80/cantor__set_8c.html#a75ee530cd7148a63249784ad3dda8fab">print</a>(&amp;head);</div>
<div class="line"><span class="lineno"> 118</span> </div>
<div class="line"><span class="lineno"> 119</span> <span class="comment">// delete all memory allocated</span></div>
<div class="line"><span class="lineno"> 120</span> <a class="code hl_function" href="../../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d">free_memory</a>(head.next);</div>
<div class="line"><span class="lineno"> 120</span> <a class="code hl_function" href="../../dc/d80/cantor__set_8c.html#a85df3c64a683100ac6246e1e034df43d">free_memory</a>(head.<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>);</div>
<div class="line"><span class="lineno"> 121</span> </div>
<div class="line"><span class="lineno"> 122</span> <span class="keywordflow">return</span> 0;</div>
<div class="line"><span class="lineno"> 123</span>}</div>
@ -299,7 +300,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 60</span> printf(<span class="stringliteral">&quot;\t&quot;</span>);</div>
<div class="line"><span class="lineno"> 61</span> printf(<span class="stringliteral">&quot;[%lf] -- &quot;</span>, temp-&gt;start);</div>
<div class="line"><span class="lineno"> 62</span> printf(<span class="stringliteral">&quot;[%lf]&quot;</span>, temp-&gt;end);</div>
<div class="line"><span class="lineno"> 63</span> temp = temp-&gt;next;</div>
<div class="line"><span class="lineno"> 63</span> temp = temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 64</span> }</div>
<div class="line"><span class="lineno"> 65</span> </div>
<div class="line"><span class="lineno"> 66</span> printf(<span class="stringliteral">&quot;\n&quot;</span>);</div>
@ -349,13 +350,13 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 40</span> newNode-&gt;start = (newNode-&gt;end) - diff;</div>
<div class="line"><span class="lineno"> 41</span> </div>
<div class="line"><span class="lineno"> 42</span> <span class="comment">// update pointer to next set in this level</span></div>
<div class="line"><span class="lineno"> 43</span> newNode-&gt;next = temp-&gt;next;</div>
<div class="line"><span class="lineno"> 43</span> newNode-&gt;next = temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 44</span> </div>
<div class="line"><span class="lineno"> 45</span> <span class="comment">// point to next set</span></div>
<div class="line"><span class="lineno"> 46</span> temp-&gt;next = newNode;</div>
<div class="line"><span class="lineno"> 46</span> temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a> = newNode;</div>
<div class="line"><span class="lineno"> 47</span> </div>
<div class="line"><span class="lineno"> 48</span> <span class="comment">// create next set</span></div>
<div class="line"><span class="lineno"> 49</span> <a class="code hl_function" href="../../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97">propagate</a>(temp-&gt;next-&gt;next);</div>
<div class="line"><span class="lineno"> 49</span> <a class="code hl_function" href="../../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97">propagate</a>(temp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>);</div>
<div class="line"><span class="lineno"> 50</span>}</div>
<div class="ttc" id="amalloc__dbg_8h_html_a725f50ecaf1959d96de79b36b4788fee"><div class="ttname"><a href="../../d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc</a></div><div class="ttdeci">#define malloc(bytes)</div><div class="ttdoc">This macro replace the standard malloc function with malloc_dbg.</div><div class="ttdef"><b>Definition:</b> malloc_dbg.h:18</div></div>
</div><!-- fragment --><div class="dynheader">

View File

@ -246,7 +246,7 @@ Functions</h2></td></tr>
<div class="line"><span class="lineno"> 191</span> <span class="keywordflow">while</span> (tmp != NULL)</div>
<div class="line"><span class="lineno"> 192</span> {</div>
<div class="line"><span class="lineno"> 193</span> size++;</div>
<div class="line"><span class="lineno"> 194</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 194</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 195</span> }</div>
<div class="line"><span class="lineno"> 196</span> </div>
<div class="line"><span class="lineno"> 197</span> <span class="comment">// first position case</span></div>
@ -286,6 +286,7 @@ Functions</h2></td></tr>
<div class="line"><span class="lineno"> 231</span> <span class="keywordflow">return</span> <a class="code hl_struct" href="../../d8/d10/structlist.html">list</a>;</div>
<div class="line"><span class="lineno"> 232</span> }</div>
<div class="line"><span class="lineno"> 233</span>}</div>
<div class="ttc" id="astructnode_html_a111a569ab2765add9b91c9f94cf9f063"><div class="ttname"><a href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node::next</a></div><div class="ttdeci">struct node * next</div><div class="ttdoc">pointer to the node</div><div class="ttdef"><b>Definition:</b> bfs.c:24</div></div>
</div><!-- fragment -->
</div>
</div>
@ -400,7 +401,7 @@ Here is the call graph for this function:</div>
<div class="line"><span class="lineno"> 123</span> <span class="keywordflow">while</span> (tmp != NULL)</div>
<div class="line"><span class="lineno"> 124</span> {</div>
<div class="line"><span class="lineno"> 125</span> size++;</div>
<div class="line"><span class="lineno"> 126</span> tmp = tmp-&gt;next;</div>
<div class="line"><span class="lineno"> 126</span> tmp = tmp-&gt;<a class="code hl_variable" href="../../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">next</a>;</div>
<div class="line"><span class="lineno"> 127</span> }</div>
<div class="line"><span class="lineno"> 128</span> </div>
<div class="line"><span class="lineno"> 129</span> <span class="comment">// first position case</span></div>

View File

@ -101,13 +101,13 @@ $(document).ready(function(){initNavTree('df/d58/md_leetcode__r_e_a_d_m_e.html',
</div><!--header-->
<div class="contents">
<div class="textblock"><p >We're glad you're interested in adding C LeetCode solutions to the repository.\ Here we'll be explaining how to contribute to LeetCode solutions properly.</p>
<h1><a class="anchor" id="autotoc_md69"></a>
<h1><a class="anchor" id="autotoc_md70"></a>
💻 Cloning/setting up the project 💻</h1>
<p >First off, you'll need to fork the repository <a href="https://github.com/TheAlgorithms/C/fork" target="_blank"><b>here</b></a>.\ Then, you'll need to clone the repository to your local machine.</p>
<div class="fragment"><div class="line">git clone https://github.com/your-username/C.git</div>
</div><!-- fragment --><p >After that, you'll need to create a new branch for your solution.</p>
<div class="fragment"><div class="line">git checkout -b solution/your-solution-name</div>
</div><!-- fragment --><h1><a class="anchor" id="autotoc_md70"></a>
</div><!-- fragment --><h1><a class="anchor" id="autotoc_md71"></a>
📝 Adding a new solution 📝</h1>
<p >All LeetCode problems can be found <a href="https://leetcode.com/problemset/all/" target="_blank"><b>here</b></a>.\ If you have a solution to any of these problems (which are not being <a href="https://github.com/TheAlgorithms/C/blob/master/leetcode/DIRECTORY.md" target="_blank"><b>repeated</b></a>), that's great! Here are the steps:</p>
<ol type="1">
@ -127,12 +127,12 @@ $(document).ready(function(){initNavTree('df/d58/md_leetcode__r_e_a_d_m_e.html',
<li>Doxygen documentation isn't used in LeetCode solutions. Simple/small documentation or comments should be fine.</li>
<li>Don't include libraries/headers such as <code>stdio.h</code>. Your file should be the solution to the problem only.</li>
</ol>
<h2><a class="anchor" id="autotoc_md71"></a>
<h2><a class="anchor" id="autotoc_md72"></a>
📜 Adding your new solution to the list 📜</h2>
<p >Great! You've added your solution. Now, you'll have to add it to <code>leetcode/DIRECTORY.md</code>.\ Please use numerical order. For example: if the solution's number is <code>98</code>, add your solution after <code>97</code>, if available.</p>
<p >This is the required format for new solutinos:</p>
<div class="fragment"><div class="line">| &lt;solution number&gt; | [&lt;solution name&gt;](&lt;leetcode link to problem&gt;) | [C](./src/&lt;filename&gt;.c) | &lt;difficulty&gt; |</div>
</div><!-- fragment --><h1><a class="anchor" id="autotoc_md72"></a>
</div><!-- fragment --><h1><a class="anchor" id="autotoc_md73"></a>
📦 Committing your changes 📦</h1>
<p >Once you're done with adding a new LeetCode solution, it's time we make a pull request.</p>
<ol type="1">

View File

@ -0,0 +1,120 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.9.5"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Algorithms_in_C: process_scheduling_algorithms Directory Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js", "TeX/AMSmath.js", "TeX/AMSsymbols.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script>
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr id="projectrow">
<td id="projectalign">
<div id="projectname">Algorithms_in_C<span id="projectnumber">&#160;1.0.0</span>
</div>
<div id="projectbrief">Set of algorithms implemented in C.</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.5 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search/",'.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(document).ready(function(){initNavTree('dir_63185e90e67935ef3eb5903a044c89e2.html',''); initResizable(); });
/* @license-end */
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<div id="MSearchResults">
<div class="SRPage">
<div id="SRIndex">
<div id="SRResults"></div>
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
</div>
</div>
</div>
</div>
<div class="header">
<div class="headertitle"><div class="title">process_scheduling_algorithms Directory Reference</div></div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a id="files" name="files"></a>
Files</h2></td></tr>
<tr class="memitem:"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html">non_preemptive_priority_scheduling.c</a></td></tr>
<tr class="memdesc:d2/d87/non__preemptive__priority__scheduling_8c"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a href="https://en.wikipedia.org/wiki/Scheduling_(computing)" target="_blank">Non-Preemptive Priority Scheduling</a> is a scheduling algorithm that selects the tasks to execute based on priority. <br /></td></tr>
<tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_63185e90e67935ef3eb5903a044c89e2.html">process_scheduling_algorithms</a></li>
<li class="footer">Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.5 </li>
</ul>
</div>
</body>
</html>

View File

@ -0,0 +1,4 @@
var dir_63185e90e67935ef3eb5903a044c89e2 =
[
[ "non_preemptive_priority_scheduling.c", "d2/d87/non__preemptive__priority__scheduling_8c.html", "d2/d87/non__preemptive__priority__scheduling_8c" ]
];

View File

@ -221,84 +221,86 @@ $(document).ready(function(){initNavTree('files.html',''); initResizable(); });
<tr id="row_14_7_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/d23/qr__decomposition_8c.html" target="_self">qr_decomposition.c</a></td><td class="desc">Program to compute the <a href="https://en.wikipedia.org/wiki/QR_decomposition" target="_blank">QR decomposition</a> of a given matrix </td></tr>
<tr id="row_14_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/d50/qr__eigen__values_8c.html" target="_self">qr_eigen_values.c</a></td><td class="desc">Compute real eigen values and eigen vectors of a symmetric matrix using <a href="https://en.wikipedia.org/wiki/QR_decomposition" target="_blank">QR decomposition</a> method </td></tr>
<tr id="row_14_9_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dc/d47/realtime__stats_8c.html" target="_self">realtime_stats.c</a></td><td class="desc">Compute statistics for data entered in rreal-time </td></tr>
<tr id="row_15_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_15_" class="arrow" onclick="toggleFolder('15_')">&#9658;</span><span id="img_15_" class="iconfclosed" onclick="toggleFolder('15_')">&#160;</span><a class="el" href="dir_b3d331eabd4234f247030c297aaf021c.html" target="_self">project_euler</a></td><td class="desc"></td></tr>
<tr id="row_15_0_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_0_" class="arrow" onclick="toggleFolder('15_0_')">&#9658;</span><span id="img_15_0_" class="iconfclosed" onclick="toggleFolder('15_0_')">&#160;</span><a class="el" href="dir_8c6743d405e8ed13cc39f42e382307fd.html" target="_self">problem_1</a></td><td class="desc"></td></tr>
<tr id="row_15_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="da/d35/problem__1_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=1" target="_blank">Problem 1</a> solution </td></tr>
<tr id="row_15_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/dae/problem__1_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=1" target="_blank">Problem 1</a> solution </td></tr>
<tr id="row_15_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="da/d56/problem__1_2sol3_8c.html" target="_self">sol3.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=1" target="_blank">Problem 1</a> solution </td></tr>
<tr id="row_15_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/d1b/sol4_8c.html" target="_self">sol4.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=1" target="_blank">Problem 1</a> solution </td></tr>
<tr id="row_15_1_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_1_" class="arrow" onclick="toggleFolder('15_1_')">&#9658;</span><span id="img_15_1_" class="iconfclosed" onclick="toggleFolder('15_1_')">&#160;</span><a class="el" href="dir_16b947d8e9a05fe119d0675493324331.html" target="_self">problem_10</a></td><td class="desc"></td></tr>
<tr id="row_15_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d0/d6d/problem__10_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=10" target="_blank">Problem 10</a> solution </td></tr>
<tr id="row_15_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d9/da7/problem__10_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=10" target="_blank">Problem 10</a> solution </td></tr>
<tr id="row_15_2_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_2_" class="arrow" onclick="toggleFolder('15_2_')">&#9658;</span><span id="img_15_2_" class="iconfclosed" onclick="toggleFolder('15_2_')">&#160;</span><a class="el" href="dir_d9112ab06cf4d4e5a25d385a268d1949.html" target="_self">problem_12</a></td><td class="desc"></td></tr>
<tr id="row_15_2_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/d1f/problem__12_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=12" target="_blank">Problem 12</a> solution </td></tr>
<tr id="row_15_3_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_3_" class="arrow" onclick="toggleFolder('15_3_')">&#9658;</span><span id="img_15_3_" class="iconfclosed" onclick="toggleFolder('15_3_')">&#160;</span><a class="el" href="dir_f7d3c03fcac84aef1b0c66cc497ed1ea.html" target="_self">problem_13</a></td><td class="desc"></td></tr>
<tr id="row_15_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="db/d01/problem__13_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=13" target="_blank">Problem 13</a> solution </td></tr>
<tr id="row_15_4_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_4_" class="arrow" onclick="toggleFolder('15_4_')">&#9658;</span><span id="img_15_4_" class="iconfclosed" onclick="toggleFolder('15_4_')">&#160;</span><a class="el" href="dir_aba97bf327db94061e830e9bc18e925d.html" target="_self">problem_14</a></td><td class="desc"></td></tr>
<tr id="row_15_4_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d4/dea/problem__14_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=14" target="_blank">Problem 14</a> solution </td></tr>
<tr id="row_15_5_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_5_" class="arrow" onclick="toggleFolder('15_5_')">&#9658;</span><span id="img_15_5_" class="iconfclosed" onclick="toggleFolder('15_5_')">&#160;</span><a class="el" href="dir_2b14f32f14b51065d3a322bea21da3c0.html" target="_self">problem_15</a></td><td class="desc"></td></tr>
<tr id="row_15_5_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/d91/problem__15_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=15" target="_blank">Problem 15</a> solution </td></tr>
<tr id="row_15_6_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_6_" class="arrow" onclick="toggleFolder('15_6_')">&#9658;</span><span id="img_15_6_" class="iconfclosed" onclick="toggleFolder('15_6_')">&#160;</span><a class="el" href="dir_18cba55772148686552805a354a79093.html" target="_self">problem_16</a></td><td class="desc"></td></tr>
<tr id="row_15_6_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/d88/problem__16_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=16" target="_blank">Problem 16</a> solution </td></tr>
<tr id="row_15_7_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_7_" class="arrow" onclick="toggleFolder('15_7_')">&#9658;</span><span id="img_15_7_" class="iconfclosed" onclick="toggleFolder('15_7_')">&#160;</span><a class="el" href="dir_0bc3e2a5baf077fa21dadc079776fcac.html" target="_self">problem_19</a></td><td class="desc"></td></tr>
<tr id="row_15_7_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dd/df0/problem__19_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=19" target="_blank">Problem 19</a> solution </td></tr>
<tr id="row_15_8_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_8_" class="arrow" onclick="toggleFolder('15_8_')">&#9658;</span><span id="img_15_8_" class="iconfclosed" onclick="toggleFolder('15_8_')">&#160;</span><a class="el" href="dir_eeeea13e3a5e5edad3499183767ce312.html" target="_self">problem_2</a></td><td class="desc"></td></tr>
<tr id="row_15_8_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d0/d7f/so1_8c.html" target="_self">so1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=2" target="_blank">Problem 2</a> solution </td></tr>
<tr id="row_15_9_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_9_" class="arrow" onclick="toggleFolder('15_9_')">&#9658;</span><span id="img_15_9_" class="iconfclosed" onclick="toggleFolder('15_9_')">&#160;</span><a class="el" href="dir_4991c92e00761dd3d764efa2906b4318.html" target="_self">problem_20</a></td><td class="desc"></td></tr>
<tr id="row_15_9_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="db/d80/problem__20_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=20" target="_blank">Problem 20</a> solution </td></tr>
<tr id="row_15_10_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_10_" class="arrow" onclick="toggleFolder('15_10_')">&#9658;</span><span id="img_15_10_" class="iconfclosed" onclick="toggleFolder('15_10_')">&#160;</span><a class="el" href="dir_d9e100c82ada2163abea49688a71e81c.html" target="_self">problem_21</a></td><td class="desc"></td></tr>
<tr id="row_15_10_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="df/d1a/problem__21_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=21" target="_blank">Problem 21</a> solution </td></tr>
<tr id="row_15_11_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_11_" class="arrow" onclick="toggleFolder('15_11_')">&#9658;</span><span id="img_15_11_" class="iconfclosed" onclick="toggleFolder('15_11_')">&#160;</span><a class="el" href="dir_2abe2c0880d3fb0dba0f784bee3fc9e0.html" target="_self">problem_22</a></td><td class="desc"></td></tr>
<tr id="row_15_11_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dd/d8b/problem__22_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=22" target="_blank">Problem 22</a> solution </td></tr>
<tr id="row_15_12_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_12_" class="arrow" onclick="toggleFolder('15_12_')">&#9658;</span><span id="img_15_12_" class="iconfclosed" onclick="toggleFolder('15_12_')">&#160;</span><a class="el" href="dir_f75ccd45e00436eafed446b9b2682984.html" target="_self">problem_23</a></td><td class="desc"></td></tr>
<tr id="row_15_12_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/ddb/problem__23_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=23" target="_blank">Problem 23</a> solution </td></tr>
<tr id="row_15_12_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d4/dbd/problem__23_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=23" target="_blank">Problem 23</a> solution - optimization using look-up array </td></tr>
<tr id="row_15_13_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_13_" class="arrow" onclick="toggleFolder('15_13_')">&#9658;</span><span id="img_15_13_" class="iconfclosed" onclick="toggleFolder('15_13_')">&#160;</span><a class="el" href="dir_079e1f799fb08a8a0b98cb030ab15687.html" target="_self">problem_25</a></td><td class="desc"></td></tr>
<tr id="row_15_13_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d8/d32/problem__25_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=25" target="_blank">Problem 25</a> solution implemented using arbitrarily large numbers represented as arrays </td></tr>
<tr id="row_15_14_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_14_" class="arrow" onclick="toggleFolder('15_14_')">&#9658;</span><span id="img_15_14_" class="iconfclosed" onclick="toggleFolder('15_14_')">&#160;</span><a class="el" href="dir_16e00c78ef36d1842d0d8a4afc46b852.html" target="_self">problem_26</a></td><td class="desc"></td></tr>
<tr id="row_15_14_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d1/df9/problem__26_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=26" target="_blank">Problem 26</a> solution </td></tr>
<tr id="row_15_15_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_15_" class="arrow" onclick="toggleFolder('15_15_')">&#9658;</span><span id="img_15_15_" class="iconfclosed" onclick="toggleFolder('15_15_')">&#160;</span><a class="el" href="dir_b2dbfa46230fd9f775c32c1836ed3764.html" target="_self">problem_3</a></td><td class="desc"></td></tr>
<tr id="row_15_15_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/dd3/problem__3_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=3" target="_blank">Problem 3</a> solution </td></tr>
<tr id="row_15_15_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/dbc/problem__3_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=3" target="_blank">Problem 3</a> solution </td></tr>
<tr id="row_15_16_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_16_" class="arrow" onclick="toggleFolder('15_16_')">&#9658;</span><span id="img_15_16_" class="iconfclosed" onclick="toggleFolder('15_16_')">&#160;</span><a class="el" href="dir_1833eb69ceee7a265ffba4c38c8243d2.html" target="_self">problem_4</a></td><td class="desc"></td></tr>
<tr id="row_15_16_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d0/d6c/problem__4_2sol_8c.html" target="_self">sol.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=4" target="_blank">Problem 4</a> solution </td></tr>
<tr id="row_15_17_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_17_" class="arrow" onclick="toggleFolder('15_17_')">&#9658;</span><span id="img_15_17_" class="iconfclosed" onclick="toggleFolder('15_17_')">&#160;</span><a class="el" href="dir_2f070f19f76dfadabbc24fe483d7e98d.html" target="_self">problem_401</a></td><td class="desc"></td></tr>
<tr id="row_15_17_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d4/d83/problem__401_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=401" target="_blank">Problem 401</a> solution - Sum of squares of divisors </td></tr>
<tr id="row_15_18_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_18_" class="arrow" onclick="toggleFolder('15_18_')">&#9658;</span><span id="img_15_18_" class="iconfclosed" onclick="toggleFolder('15_18_')">&#160;</span><a class="el" href="dir_607f15d36c772334f988bb9ef82d102c.html" target="_self">problem_5</a></td><td class="desc"></td></tr>
<tr id="row_15_18_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dc/d32/problem__5_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=5" target="_blank">Problem 5</a> solution - Naive algorithm (slowest) </td></tr>
<tr id="row_15_18_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/d3d/problem__5_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=5" target="_blank">Problem 5</a> solution - Naive algorithm (Improved over <a class="el" href="dc/d32/problem__5_2sol1_8c.html" title="Problem 5 solution - Naive algorithm (slowest)">problem_5/sol1.c</a>) </td></tr>
<tr id="row_15_18_2_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/d7c/problem__5_2sol3_8c.html" target="_self">sol3.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=5" target="_blank">Problem 5</a> solution (Fastest) </td></tr>
<tr id="row_15_19_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_19_" class="arrow" onclick="toggleFolder('15_19_')">&#9658;</span><span id="img_15_19_" class="iconfclosed" onclick="toggleFolder('15_19_')">&#160;</span><a class="el" href="dir_167af11096b7752ff31b3d4bec489317.html" target="_self">problem_6</a></td><td class="desc"></td></tr>
<tr id="row_15_19_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d4/d7b/problem__6_2sol_8c.html" target="_self">sol.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=6" target="_blank">Problem 6</a> solution </td></tr>
<tr id="row_15_20_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_20_" class="arrow" onclick="toggleFolder('15_20_')">&#9658;</span><span id="img_15_20_" class="iconfclosed" onclick="toggleFolder('15_20_')">&#160;</span><a class="el" href="dir_4bae997a2671812c2140d5abfb6305a4.html" target="_self">problem_7</a></td><td class="desc"></td></tr>
<tr id="row_15_20_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d1/d2f/problem__7_2sol_8c.html" target="_self">sol.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=7" target="_blank">Problem 7</a> solution </td></tr>
<tr id="row_15_20_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/d64/problem__7_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=7" target="_blank">Problem 7</a> solution </td></tr>
<tr id="row_15_21_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_21_" class="arrow" onclick="toggleFolder('15_21_')">&#9658;</span><span id="img_15_21_" class="iconfclosed" onclick="toggleFolder('15_21_')">&#160;</span><a class="el" href="dir_4a15c8553efb9e59e3f1091cc0d3a27d.html" target="_self">problem_8</a></td><td class="desc"></td></tr>
<tr id="row_15_21_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dc/d63/problem__8_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=8" target="_blank">Problem 8</a> solution </td></tr>
<tr id="row_15_21_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d93/problem__8_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=8" target="_blank">Problem 8</a> solution </td></tr>
<tr id="row_15_22_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_15_22_" class="arrow" onclick="toggleFolder('15_22_')">&#9658;</span><span id="img_15_22_" class="iconfclosed" onclick="toggleFolder('15_22_')">&#160;</span><a class="el" href="dir_d4c35186c199e728d69dee6bf5b2473c.html" target="_self">problem_9</a></td><td class="desc"></td></tr>
<tr id="row_15_22_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="df/da5/problem__9_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=9" target="_blank">Problem 9</a> solution - A naive implementation </td></tr>
<tr id="row_15_22_1_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d8/de0/problem__9_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=9" target="_blank">Problem 9</a> solution </td></tr>
<tr id="row_16_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_16_" class="arrow" onclick="toggleFolder('16_')">&#9658;</span><span id="img_16_" class="iconfclosed" onclick="toggleFolder('16_')">&#160;</span><a class="el" href="dir_da574daf9ce9c05b45556bdc871ed1e3.html" target="_self">searching</a></td><td class="desc"></td></tr>
<tr id="row_16_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="df/d3b/binary__search_8c.html" target="_self">binary_search.c</a></td><td class="desc">Program to perform <a href="https://en.wikipedia.org/wiki/Binary_search_algorithm" target="_blank">binary search</a> of a target value in a given <em>sorted</em> array </td></tr>
<tr id="row_16_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="da/d6c/exponential__search_8c.html" target="_self">exponential_search.c</a></td><td class="desc"><a href="https://github.com/TheAlgorithms/Algorithms-Explanation/blob/master/en/Search%20Algorithms/Exponential%20Search.md" target="_blank">Exponential Search</a> </td></tr>
<tr id="row_16_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d9b/floyd__cycle__detection__algorithm_8c.html" target="_self">floyd_cycle_detection_algorithm.c</a></td><td class="desc">Implementation of <a href="https://en.wikipedia.org/wiki/Cycle_detection" target="_blank">Floyd's Cycle Detection</a> algorithm </td></tr>
<tr id="row_16_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/d7b/jump__search_8c.html" target="_self">jump_search.c</a></td><td class="desc">Implementation of <a href="https://en.wikipedia.org/wiki/Jump_search" target="_blank">jump search</a> algorithm </td></tr>
<tr id="row_16_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d3/d47/modified__binary__search_8c.html" target="_self">modified_binary_search.c</a></td><td class="desc"><a href="https://arxiv.org/abs/1406.1677" target="_blank">Modified binary search algorithm</a> </td></tr>
<tr id="row_16_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/de2/sentinel__linear__search_8c.html" target="_self">sentinel_linear_search.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Linear_search#With_a_sentinel" target="_blank">Linear Search with Sentinel</a> algorithm implementation </td></tr>
<tr id="row_17_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_17_" class="arrow" onclick="toggleFolder('17_')">&#9658;</span><span id="img_17_" class="iconfclosed" onclick="toggleFolder('17_')">&#160;</span><a class="el" href="dir_bb1b521853a9c46347182a9d10420771.html" target="_self">sorting</a></td><td class="desc"></td></tr>
<tr id="row_17_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/da8/bead__sort_8c.html" target="_self">bead_sort.c</a></td><td class="desc">Sorting of array list using <a href="https://en.wikipedia.org/wiki/Bead_sort" target="_blank">bead sort</a> </td></tr>
<tr id="row_17_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dd/de4/bubble__sort_8c.html" target="_self">bubble_sort.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Bubble_sort" target="_blank">Bubble sort</a> algorithm implementation </td></tr>
<tr id="row_17_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d6d/bubble__sort__2_8c.html" target="_self">bubble_sort_2.c</a></td><td class="desc">Implementation of <a href="https://en.wikipedia.org/wiki/Bubble_sort" target="_blank">Bubble sort</a> algorithm </td></tr>
<tr id="row_17_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/d38/bubble__sort__recursion_8c.html" target="_self">bubble_sort_recursion.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Bubble_sort" target="_blank">Bubble sort</a> algorithm implementation using recursion </td></tr>
<tr id="row_17_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="de/dff/heap__sort__2_8c.html" target="_self">heap_sort_2.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Heapsort" target="_blank">Heap Sort</a> implementation </td></tr>
<tr id="row_17_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="db/ddf/insertion__sort_8c.html" target="_self">insertion_sort.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Insertion_sort" target="_blank">Insertion sort</a> algorithm implementation </td></tr>
<tr id="row_17_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="de/d0c/insertion__sort__recursive_8c.html" target="_self">insertion_sort_recursive.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Insertion_sort" target="_blank">Insertion sort</a> algorithm implementation </td></tr>
<tr id="row_17_7_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d83/merge__sort_8c.html" target="_self">merge_sort.c</a></td><td class="desc">Implementation of <a href="https://en.wikipedia.org/wiki/Merge_sort" target="_blank">merge sort</a> algorithm </td></tr>
<tr id="row_17_8_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d1/d94/odd__even__sort_8c.html" target="_self">odd_even_sort.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Odd%E2%80%93even_sort" target="_blank">Odd Even Sort</a> implementation </td></tr>
<tr id="row_17_9_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="df/d83/selection__sort_8c.html" target="_self">selection_sort.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Selection_sort" target="_blank">Selection sort</a> algorithm implementation </td></tr>
<tr id="row_17_10_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dc/d39/selection__sort__recursive_8c.html" target="_self">selection_sort_recursive.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Selection_sort" target="_blank">Selection Sort</a> implementation using recursion </td></tr>
<tr id="row_17_11_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/ded/shell__sort2_8c.html" target="_self">shell_sort2.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Shell_sort" target="_blank">Shell sort algorithm</a> implementation </td></tr>
<tr id="row_15_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_15_" class="arrow" onclick="toggleFolder('15_')">&#9658;</span><span id="img_15_" class="iconfclosed" onclick="toggleFolder('15_')">&#160;</span><a class="el" href="dir_63185e90e67935ef3eb5903a044c89e2.html" target="_self">process_scheduling_algorithms</a></td><td class="desc"></td></tr>
<tr id="row_15_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html" target="_self">non_preemptive_priority_scheduling.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Scheduling_(computing)" target="_blank">Non-Preemptive Priority Scheduling</a> is a scheduling algorithm that selects the tasks to execute based on priority </td></tr>
<tr id="row_16_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_16_" class="arrow" onclick="toggleFolder('16_')">&#9658;</span><span id="img_16_" class="iconfclosed" onclick="toggleFolder('16_')">&#160;</span><a class="el" href="dir_b3d331eabd4234f247030c297aaf021c.html" target="_self">project_euler</a></td><td class="desc"></td></tr>
<tr id="row_16_0_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_0_" class="arrow" onclick="toggleFolder('16_0_')">&#9658;</span><span id="img_16_0_" class="iconfclosed" onclick="toggleFolder('16_0_')">&#160;</span><a class="el" href="dir_8c6743d405e8ed13cc39f42e382307fd.html" target="_self">problem_1</a></td><td class="desc"></td></tr>
<tr id="row_16_0_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="da/d35/problem__1_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=1" target="_blank">Problem 1</a> solution </td></tr>
<tr id="row_16_0_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/dae/problem__1_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=1" target="_blank">Problem 1</a> solution </td></tr>
<tr id="row_16_0_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="da/d56/problem__1_2sol3_8c.html" target="_self">sol3.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=1" target="_blank">Problem 1</a> solution </td></tr>
<tr id="row_16_0_3_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/d1b/sol4_8c.html" target="_self">sol4.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=1" target="_blank">Problem 1</a> solution </td></tr>
<tr id="row_16_1_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_1_" class="arrow" onclick="toggleFolder('16_1_')">&#9658;</span><span id="img_16_1_" class="iconfclosed" onclick="toggleFolder('16_1_')">&#160;</span><a class="el" href="dir_16b947d8e9a05fe119d0675493324331.html" target="_self">problem_10</a></td><td class="desc"></td></tr>
<tr id="row_16_1_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d0/d6d/problem__10_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=10" target="_blank">Problem 10</a> solution </td></tr>
<tr id="row_16_1_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d9/da7/problem__10_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=10" target="_blank">Problem 10</a> solution </td></tr>
<tr id="row_16_2_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_2_" class="arrow" onclick="toggleFolder('16_2_')">&#9658;</span><span id="img_16_2_" class="iconfclosed" onclick="toggleFolder('16_2_')">&#160;</span><a class="el" href="dir_d9112ab06cf4d4e5a25d385a268d1949.html" target="_self">problem_12</a></td><td class="desc"></td></tr>
<tr id="row_16_2_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/d1f/problem__12_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=12" target="_blank">Problem 12</a> solution </td></tr>
<tr id="row_16_3_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_3_" class="arrow" onclick="toggleFolder('16_3_')">&#9658;</span><span id="img_16_3_" class="iconfclosed" onclick="toggleFolder('16_3_')">&#160;</span><a class="el" href="dir_f7d3c03fcac84aef1b0c66cc497ed1ea.html" target="_self">problem_13</a></td><td class="desc"></td></tr>
<tr id="row_16_3_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="db/d01/problem__13_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=13" target="_blank">Problem 13</a> solution </td></tr>
<tr id="row_16_4_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_4_" class="arrow" onclick="toggleFolder('16_4_')">&#9658;</span><span id="img_16_4_" class="iconfclosed" onclick="toggleFolder('16_4_')">&#160;</span><a class="el" href="dir_aba97bf327db94061e830e9bc18e925d.html" target="_self">problem_14</a></td><td class="desc"></td></tr>
<tr id="row_16_4_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d4/dea/problem__14_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=14" target="_blank">Problem 14</a> solution </td></tr>
<tr id="row_16_5_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_5_" class="arrow" onclick="toggleFolder('16_5_')">&#9658;</span><span id="img_16_5_" class="iconfclosed" onclick="toggleFolder('16_5_')">&#160;</span><a class="el" href="dir_2b14f32f14b51065d3a322bea21da3c0.html" target="_self">problem_15</a></td><td class="desc"></td></tr>
<tr id="row_16_5_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/d91/problem__15_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=15" target="_blank">Problem 15</a> solution </td></tr>
<tr id="row_16_6_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_6_" class="arrow" onclick="toggleFolder('16_6_')">&#9658;</span><span id="img_16_6_" class="iconfclosed" onclick="toggleFolder('16_6_')">&#160;</span><a class="el" href="dir_18cba55772148686552805a354a79093.html" target="_self">problem_16</a></td><td class="desc"></td></tr>
<tr id="row_16_6_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/d88/problem__16_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=16" target="_blank">Problem 16</a> solution </td></tr>
<tr id="row_16_7_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_7_" class="arrow" onclick="toggleFolder('16_7_')">&#9658;</span><span id="img_16_7_" class="iconfclosed" onclick="toggleFolder('16_7_')">&#160;</span><a class="el" href="dir_0bc3e2a5baf077fa21dadc079776fcac.html" target="_self">problem_19</a></td><td class="desc"></td></tr>
<tr id="row_16_7_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dd/df0/problem__19_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=19" target="_blank">Problem 19</a> solution </td></tr>
<tr id="row_16_8_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_8_" class="arrow" onclick="toggleFolder('16_8_')">&#9658;</span><span id="img_16_8_" class="iconfclosed" onclick="toggleFolder('16_8_')">&#160;</span><a class="el" href="dir_eeeea13e3a5e5edad3499183767ce312.html" target="_self">problem_2</a></td><td class="desc"></td></tr>
<tr id="row_16_8_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d0/d7f/so1_8c.html" target="_self">so1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=2" target="_blank">Problem 2</a> solution </td></tr>
<tr id="row_16_9_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_9_" class="arrow" onclick="toggleFolder('16_9_')">&#9658;</span><span id="img_16_9_" class="iconfclosed" onclick="toggleFolder('16_9_')">&#160;</span><a class="el" href="dir_4991c92e00761dd3d764efa2906b4318.html" target="_self">problem_20</a></td><td class="desc"></td></tr>
<tr id="row_16_9_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="db/d80/problem__20_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=20" target="_blank">Problem 20</a> solution </td></tr>
<tr id="row_16_10_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_10_" class="arrow" onclick="toggleFolder('16_10_')">&#9658;</span><span id="img_16_10_" class="iconfclosed" onclick="toggleFolder('16_10_')">&#160;</span><a class="el" href="dir_d9e100c82ada2163abea49688a71e81c.html" target="_self">problem_21</a></td><td class="desc"></td></tr>
<tr id="row_16_10_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="df/d1a/problem__21_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=21" target="_blank">Problem 21</a> solution </td></tr>
<tr id="row_16_11_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_11_" class="arrow" onclick="toggleFolder('16_11_')">&#9658;</span><span id="img_16_11_" class="iconfclosed" onclick="toggleFolder('16_11_')">&#160;</span><a class="el" href="dir_2abe2c0880d3fb0dba0f784bee3fc9e0.html" target="_self">problem_22</a></td><td class="desc"></td></tr>
<tr id="row_16_11_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dd/d8b/problem__22_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=22" target="_blank">Problem 22</a> solution </td></tr>
<tr id="row_16_12_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_12_" class="arrow" onclick="toggleFolder('16_12_')">&#9658;</span><span id="img_16_12_" class="iconfclosed" onclick="toggleFolder('16_12_')">&#160;</span><a class="el" href="dir_f75ccd45e00436eafed446b9b2682984.html" target="_self">problem_23</a></td><td class="desc"></td></tr>
<tr id="row_16_12_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/ddb/problem__23_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=23" target="_blank">Problem 23</a> solution </td></tr>
<tr id="row_16_12_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d4/dbd/problem__23_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=23" target="_blank">Problem 23</a> solution - optimization using look-up array </td></tr>
<tr id="row_16_13_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_13_" class="arrow" onclick="toggleFolder('16_13_')">&#9658;</span><span id="img_16_13_" class="iconfclosed" onclick="toggleFolder('16_13_')">&#160;</span><a class="el" href="dir_079e1f799fb08a8a0b98cb030ab15687.html" target="_self">problem_25</a></td><td class="desc"></td></tr>
<tr id="row_16_13_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d8/d32/problem__25_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=25" target="_blank">Problem 25</a> solution implemented using arbitrarily large numbers represented as arrays </td></tr>
<tr id="row_16_14_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_14_" class="arrow" onclick="toggleFolder('16_14_')">&#9658;</span><span id="img_16_14_" class="iconfclosed" onclick="toggleFolder('16_14_')">&#160;</span><a class="el" href="dir_16e00c78ef36d1842d0d8a4afc46b852.html" target="_self">problem_26</a></td><td class="desc"></td></tr>
<tr id="row_16_14_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d1/df9/problem__26_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=26" target="_blank">Problem 26</a> solution </td></tr>
<tr id="row_16_15_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_15_" class="arrow" onclick="toggleFolder('16_15_')">&#9658;</span><span id="img_16_15_" class="iconfclosed" onclick="toggleFolder('16_15_')">&#160;</span><a class="el" href="dir_b2dbfa46230fd9f775c32c1836ed3764.html" target="_self">problem_3</a></td><td class="desc"></td></tr>
<tr id="row_16_15_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d7/dd3/problem__3_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=3" target="_blank">Problem 3</a> solution </td></tr>
<tr id="row_16_15_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/dbc/problem__3_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=3" target="_blank">Problem 3</a> solution </td></tr>
<tr id="row_16_16_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_16_" class="arrow" onclick="toggleFolder('16_16_')">&#9658;</span><span id="img_16_16_" class="iconfclosed" onclick="toggleFolder('16_16_')">&#160;</span><a class="el" href="dir_1833eb69ceee7a265ffba4c38c8243d2.html" target="_self">problem_4</a></td><td class="desc"></td></tr>
<tr id="row_16_16_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d0/d6c/problem__4_2sol_8c.html" target="_self">sol.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=4" target="_blank">Problem 4</a> solution </td></tr>
<tr id="row_16_17_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_17_" class="arrow" onclick="toggleFolder('16_17_')">&#9658;</span><span id="img_16_17_" class="iconfclosed" onclick="toggleFolder('16_17_')">&#160;</span><a class="el" href="dir_2f070f19f76dfadabbc24fe483d7e98d.html" target="_self">problem_401</a></td><td class="desc"></td></tr>
<tr id="row_16_17_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d4/d83/problem__401_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=401" target="_blank">Problem 401</a> solution - Sum of squares of divisors </td></tr>
<tr id="row_16_18_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_18_" class="arrow" onclick="toggleFolder('16_18_')">&#9658;</span><span id="img_16_18_" class="iconfclosed" onclick="toggleFolder('16_18_')">&#160;</span><a class="el" href="dir_607f15d36c772334f988bb9ef82d102c.html" target="_self">problem_5</a></td><td class="desc"></td></tr>
<tr id="row_16_18_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dc/d32/problem__5_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=5" target="_blank">Problem 5</a> solution - Naive algorithm (slowest) </td></tr>
<tr id="row_16_18_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/d3d/problem__5_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=5" target="_blank">Problem 5</a> solution - Naive algorithm (Improved over <a class="el" href="dc/d32/problem__5_2sol1_8c.html" title="Problem 5 solution - Naive algorithm (slowest)">problem_5/sol1.c</a>) </td></tr>
<tr id="row_16_18_2_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/d7c/problem__5_2sol3_8c.html" target="_self">sol3.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=5" target="_blank">Problem 5</a> solution (Fastest) </td></tr>
<tr id="row_16_19_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_19_" class="arrow" onclick="toggleFolder('16_19_')">&#9658;</span><span id="img_16_19_" class="iconfclosed" onclick="toggleFolder('16_19_')">&#160;</span><a class="el" href="dir_167af11096b7752ff31b3d4bec489317.html" target="_self">problem_6</a></td><td class="desc"></td></tr>
<tr id="row_16_19_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d4/d7b/problem__6_2sol_8c.html" target="_self">sol.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=6" target="_blank">Problem 6</a> solution </td></tr>
<tr id="row_16_20_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_20_" class="arrow" onclick="toggleFolder('16_20_')">&#9658;</span><span id="img_16_20_" class="iconfclosed" onclick="toggleFolder('16_20_')">&#160;</span><a class="el" href="dir_4bae997a2671812c2140d5abfb6305a4.html" target="_self">problem_7</a></td><td class="desc"></td></tr>
<tr id="row_16_20_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d1/d2f/problem__7_2sol_8c.html" target="_self">sol.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=7" target="_blank">Problem 7</a> solution </td></tr>
<tr id="row_16_20_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/d64/problem__7_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=7" target="_blank">Problem 7</a> solution </td></tr>
<tr id="row_16_21_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_21_" class="arrow" onclick="toggleFolder('16_21_')">&#9658;</span><span id="img_16_21_" class="iconfclosed" onclick="toggleFolder('16_21_')">&#160;</span><a class="el" href="dir_4a15c8553efb9e59e3f1091cc0d3a27d.html" target="_self">problem_8</a></td><td class="desc"></td></tr>
<tr id="row_16_21_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dc/d63/problem__8_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=8" target="_blank">Problem 8</a> solution </td></tr>
<tr id="row_16_21_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d93/problem__8_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=8" target="_blank">Problem 8</a> solution </td></tr>
<tr id="row_16_22_" class="odd" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_16_22_" class="arrow" onclick="toggleFolder('16_22_')">&#9658;</span><span id="img_16_22_" class="iconfclosed" onclick="toggleFolder('16_22_')">&#160;</span><a class="el" href="dir_d4c35186c199e728d69dee6bf5b2473c.html" target="_self">problem_9</a></td><td class="desc"></td></tr>
<tr id="row_16_22_0_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="df/da5/problem__9_2sol1_8c.html" target="_self">sol1.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=9" target="_blank">Problem 9</a> solution - A naive implementation </td></tr>
<tr id="row_16_22_1_" class="odd" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d8/de0/problem__9_2sol2_8c.html" target="_self">sol2.c</a></td><td class="desc"><a href="https://projecteuler.net/problem=9" target="_blank">Problem 9</a> solution </td></tr>
<tr id="row_17_" class="odd"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_17_" class="arrow" onclick="toggleFolder('17_')">&#9658;</span><span id="img_17_" class="iconfclosed" onclick="toggleFolder('17_')">&#160;</span><a class="el" href="dir_da574daf9ce9c05b45556bdc871ed1e3.html" target="_self">searching</a></td><td class="desc"></td></tr>
<tr id="row_17_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="df/d3b/binary__search_8c.html" target="_self">binary_search.c</a></td><td class="desc">Program to perform <a href="https://en.wikipedia.org/wiki/Binary_search_algorithm" target="_blank">binary search</a> of a target value in a given <em>sorted</em> array </td></tr>
<tr id="row_17_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="da/d6c/exponential__search_8c.html" target="_self">exponential_search.c</a></td><td class="desc"><a href="https://github.com/TheAlgorithms/Algorithms-Explanation/blob/master/en/Search%20Algorithms/Exponential%20Search.md" target="_blank">Exponential Search</a> </td></tr>
<tr id="row_17_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d9b/floyd__cycle__detection__algorithm_8c.html" target="_self">floyd_cycle_detection_algorithm.c</a></td><td class="desc">Implementation of <a href="https://en.wikipedia.org/wiki/Cycle_detection" target="_blank">Floyd's Cycle Detection</a> algorithm </td></tr>
<tr id="row_17_3_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/d7b/jump__search_8c.html" target="_self">jump_search.c</a></td><td class="desc">Implementation of <a href="https://en.wikipedia.org/wiki/Jump_search" target="_blank">jump search</a> algorithm </td></tr>
<tr id="row_17_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d3/d47/modified__binary__search_8c.html" target="_self">modified_binary_search.c</a></td><td class="desc"><a href="https://arxiv.org/abs/1406.1677" target="_blank">Modified binary search algorithm</a> </td></tr>
<tr id="row_17_5_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/de2/sentinel__linear__search_8c.html" target="_self">sentinel_linear_search.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Linear_search#With_a_sentinel" target="_blank">Linear Search with Sentinel</a> algorithm implementation </td></tr>
<tr id="row_18_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_18_" class="arrow" onclick="toggleFolder('18_')">&#9658;</span><span id="img_18_" class="iconfclosed" onclick="toggleFolder('18_')">&#160;</span><a class="el" href="dir_bb1b521853a9c46347182a9d10420771.html" target="_self">sorting</a></td><td class="desc"></td></tr>
<tr id="row_18_0_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/da8/bead__sort_8c.html" target="_self">bead_sort.c</a></td><td class="desc">Sorting of array list using <a href="https://en.wikipedia.org/wiki/Bead_sort" target="_blank">bead sort</a> </td></tr>
<tr id="row_18_1_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dd/de4/bubble__sort_8c.html" target="_self">bubble_sort.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Bubble_sort" target="_blank">Bubble sort</a> algorithm implementation </td></tr>
<tr id="row_18_2_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d6d/bubble__sort__2_8c.html" target="_self">bubble_sort_2.c</a></td><td class="desc">Implementation of <a href="https://en.wikipedia.org/wiki/Bubble_sort" target="_blank">Bubble sort</a> algorithm </td></tr>
<tr id="row_18_3_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d5/d38/bubble__sort__recursion_8c.html" target="_self">bubble_sort_recursion.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Bubble_sort" target="_blank">Bubble sort</a> algorithm implementation using recursion </td></tr>
<tr id="row_18_4_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="de/dff/heap__sort__2_8c.html" target="_self">heap_sort_2.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Heapsort" target="_blank">Heap Sort</a> implementation </td></tr>
<tr id="row_18_5_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="db/ddf/insertion__sort_8c.html" target="_self">insertion_sort.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Insertion_sort" target="_blank">Insertion sort</a> algorithm implementation </td></tr>
<tr id="row_18_6_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="de/d0c/insertion__sort__recursive_8c.html" target="_self">insertion_sort_recursive.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Insertion_sort" target="_blank">Insertion sort</a> algorithm implementation </td></tr>
<tr id="row_18_7_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d2/d83/merge__sort_8c.html" target="_self">merge_sort.c</a></td><td class="desc">Implementation of <a href="https://en.wikipedia.org/wiki/Merge_sort" target="_blank">merge sort</a> algorithm </td></tr>
<tr id="row_18_8_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d1/d94/odd__even__sort_8c.html" target="_self">odd_even_sort.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Odd%E2%80%93even_sort" target="_blank">Odd Even Sort</a> implementation </td></tr>
<tr id="row_18_9_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="df/d83/selection__sort_8c.html" target="_self">selection_sort.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Selection_sort" target="_blank">Selection sort</a> algorithm implementation </td></tr>
<tr id="row_18_10_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="dc/d39/selection__sort__recursive_8c.html" target="_self">selection_sort_recursive.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Selection_sort" target="_blank">Selection Sort</a> implementation using recursion </td></tr>
<tr id="row_18_11_" class="odd" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icondoc"></span><a class="el" href="d6/ded/shell__sort2_8c.html" target="_self">shell_sort2.c</a></td><td class="desc"><a href="https://en.wikipedia.org/wiki/Shell_sort" target="_blank">Shell sort algorithm</a> implementation </td></tr>
</table>
</div><!-- directory -->
</div><!-- contents -->

View File

@ -15,6 +15,7 @@ var files_dup =
[ "machine_learning", "dir_3343723ae086de42ee4ca9774da3a13f.html", "dir_3343723ae086de42ee4ca9774da3a13f" ],
[ "misc", "dir_a52f4d3d586a58b02f3a4ddf0a992157.html", "dir_a52f4d3d586a58b02f3a4ddf0a992157" ],
[ "numerical_methods", "dir_9c6faab82c22511b50177aa2e38e2780.html", "dir_9c6faab82c22511b50177aa2e38e2780" ],
[ "process_scheduling_algorithms", "dir_63185e90e67935ef3eb5903a044c89e2.html", "dir_63185e90e67935ef3eb5903a044c89e2" ],
[ "project_euler", "dir_b3d331eabd4234f247030c297aaf021c.html", "dir_b3d331eabd4234f247030c297aaf021c" ],
[ "searching", "dir_da574daf9ce9c05b45556bdc871ed1e3.html", "dir_da574daf9ce9c05b45556bdc871ed1e3" ],
[ "sorting", "dir_bb1b521853a9c46347182a9d10420771.html", "dir_bb1b521853a9c46347182a9d10420771" ]

View File

@ -101,11 +101,13 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
<h3><a id="index_a" name="index_a"></a>- a -</h3><ul>
<li>a&#160;:&#160;<a class="el" href="dc/d18/structsudoku.html#a507f788b793d4d3d6f6a70415be84ded">sudoku</a></li>
<li>AT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">node</a></li>
</ul>
<h3><a id="index_b" name="index_b"></a>- b -</h3><ul>
<li>bank&#160;:&#160;<a class="el" href="d2/de8/structeuler__.html#a34941b75b9bb747cd68d28315fa9691a">euler_</a></li>
<li>BT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">node</a></li>
<li>bytes&#160;:&#160;<a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d">MEMORY_INFORMATION</a></li>
</ul>
@ -115,6 +117,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
<li>combine&#160;:&#160;<a class="el" href="dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df">segment_tree</a></li>
<li>contents&#160;:&#160;<a class="el" href="d4/d06/struct_vector.html#afd870750f3874ee097833fc8a1dc809e">Vector</a></li>
<li>count&#160;:&#160;<a class="el" href="d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b">cluster</a></li>
<li>CT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">node</a></li>
<li>current&#160;:&#160;<a class="el" href="d4/d06/struct_vector.html#a8cb577f14bea1a6c1fbf85717b3ee4f9">Vector</a></li>
</ul>
@ -155,6 +158,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
<h3><a id="index_i" name="index_i"></a>- i -</h3><ul>
<li>ID&#160;:&#160;<a class="el" href="d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">node</a></li>
<li>identity&#160;:&#160;<a class="el" href="dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a">segment_tree</a></li>
</ul>
@ -171,7 +175,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
<h3><a id="index_n" name="index_n"></a>- n -</h3><ul>
<li>N&#160;:&#160;<a class="el" href="dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129">sudoku</a></li>
<li>N2&#160;:&#160;<a class="el" href="dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56">sudoku</a></li>
<li>next&#160;:&#160;<a class="el" href="d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1">_cantor_set</a>, <a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007">MEMORY_INFORMATION</a>, <a class="el" href="df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a">term</a></li>
<li>next&#160;:&#160;<a class="el" href="d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1">_cantor_set</a>, <a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007">MEMORY_INFORMATION</a>, <a class="el" href="d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node</a>, <a class="el" href="df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a">term</a></li>
<li>next_digit&#160;:&#160;<a class="el" href="dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564">_big_int</a></li>
<li>num_digits&#160;:&#160;<a class="el" href="d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0">_large_num</a></li>
<li>num_weights&#160;:&#160;<a class="el" href="d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1">adaline</a></li>
@ -184,6 +188,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
<li>prev&#160;:&#160;<a class="el" href="d8/d10/structlist.html#a2054c799f7580787a500df82d14ace25">list</a></li>
<li>prev_digit&#160;:&#160;<a class="el" href="dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b">_big_int</a></li>
<li>previous&#160;:&#160;<a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3">MEMORY_INFORMATION</a></li>
<li>priority&#160;:&#160;<a class="el" href="d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b">node</a></li>
<li>ptr&#160;:&#160;<a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde">MEMORY_INFORMATION</a></li>
</ul>
@ -212,6 +217,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
<h3><a id="index_t" name="index_t"></a>- t -</h3><ul>
<li>TAT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">node</a></li>
<li>top&#160;:&#160;<a class="el" href="dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a">Stack</a></li>
<li>tos&#160;:&#160;<a class="el" href="dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9">Stack</a></li>
</ul>
@ -226,6 +232,7 @@ $(document).ready(function(){initNavTree('functions.html',''); initResizable();
<li>w&#160;:&#160;<a class="el" href="de/d58/structquaternion__.html#a835e2ba72517fbb29d0d4e3cb4c2914f">quaternion_</a></li>
<li>weights&#160;:&#160;<a class="el" href="d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657">adaline</a></li>
<li>word&#160;:&#160;<a class="el" href="db/d8b/struct_node.html#afa6ccc6414d3e0bcacb715dcdf764bca">Node</a></li>
<li>WT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653">node</a></li>
</ul>

View File

@ -101,11 +101,13 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
<h3><a id="index_a" name="index_a"></a>- a -</h3><ul>
<li>a&#160;:&#160;<a class="el" href="dc/d18/structsudoku.html#a507f788b793d4d3d6f6a70415be84ded">sudoku</a></li>
<li>AT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc">node</a></li>
</ul>
<h3><a id="index_b" name="index_b"></a>- b -</h3><ul>
<li>bank&#160;:&#160;<a class="el" href="d2/de8/structeuler__.html#a34941b75b9bb747cd68d28315fa9691a">euler_</a></li>
<li>BT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e">node</a></li>
<li>bytes&#160;:&#160;<a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d">MEMORY_INFORMATION</a></li>
</ul>
@ -115,6 +117,7 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
<li>combine&#160;:&#160;<a class="el" href="dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df">segment_tree</a></li>
<li>contents&#160;:&#160;<a class="el" href="d4/d06/struct_vector.html#afd870750f3874ee097833fc8a1dc809e">Vector</a></li>
<li>count&#160;:&#160;<a class="el" href="d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b">cluster</a></li>
<li>CT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882">node</a></li>
<li>current&#160;:&#160;<a class="el" href="d4/d06/struct_vector.html#a8cb577f14bea1a6c1fbf85717b3ee4f9">Vector</a></li>
</ul>
@ -155,6 +158,7 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
<h3><a id="index_i" name="index_i"></a>- i -</h3><ul>
<li>ID&#160;:&#160;<a class="el" href="d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454">node</a></li>
<li>identity&#160;:&#160;<a class="el" href="dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a">segment_tree</a></li>
</ul>
@ -171,7 +175,7 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
<h3><a id="index_n" name="index_n"></a>- n -</h3><ul>
<li>N&#160;:&#160;<a class="el" href="dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129">sudoku</a></li>
<li>N2&#160;:&#160;<a class="el" href="dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56">sudoku</a></li>
<li>next&#160;:&#160;<a class="el" href="d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1">_cantor_set</a>, <a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007">MEMORY_INFORMATION</a>, <a class="el" href="df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a">term</a></li>
<li>next&#160;:&#160;<a class="el" href="d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1">_cantor_set</a>, <a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007">MEMORY_INFORMATION</a>, <a class="el" href="d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063">node</a>, <a class="el" href="df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a">term</a></li>
<li>next_digit&#160;:&#160;<a class="el" href="dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564">_big_int</a></li>
<li>num_digits&#160;:&#160;<a class="el" href="d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0">_large_num</a></li>
<li>num_weights&#160;:&#160;<a class="el" href="d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1">adaline</a></li>
@ -184,6 +188,7 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
<li>prev&#160;:&#160;<a class="el" href="d8/d10/structlist.html#a2054c799f7580787a500df82d14ace25">list</a></li>
<li>prev_digit&#160;:&#160;<a class="el" href="dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b">_big_int</a></li>
<li>previous&#160;:&#160;<a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3">MEMORY_INFORMATION</a></li>
<li>priority&#160;:&#160;<a class="el" href="d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b">node</a></li>
<li>ptr&#160;:&#160;<a class="el" href="d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde">MEMORY_INFORMATION</a></li>
</ul>
@ -212,6 +217,7 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
<h3><a id="index_t" name="index_t"></a>- t -</h3><ul>
<li>TAT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3">node</a></li>
<li>top&#160;:&#160;<a class="el" href="dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a">Stack</a></li>
<li>tos&#160;:&#160;<a class="el" href="dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9">Stack</a></li>
</ul>
@ -226,6 +232,7 @@ $(document).ready(function(){initNavTree('functions_vars.html',''); initResizabl
<li>w&#160;:&#160;<a class="el" href="de/d58/structquaternion__.html#a835e2ba72517fbb29d0d4e3cb4c2914f">quaternion_</a></li>
<li>weights&#160;:&#160;<a class="el" href="d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657">adaline</a></li>
<li>word&#160;:&#160;<a class="el" href="db/d8b/struct_node.html#afa6ccc6414d3e0bcacb715dcdf764bca">Node</a></li>
<li>WT&#160;:&#160;<a class="el" href="d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653">node</a></li>
</ul>

View File

@ -101,6 +101,9 @@ $(document).ready(function(){initNavTree('globals_c.html',''); initResizable();
<h3><a id="index_c" name="index_c"></a>- c -</h3><ul>
<li>c_atoi()&#160;:&#160;<a class="el" href="d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f">c_atoi_str_to_integer.c</a></li>
<li>calculate_ct()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df">non_preemptive_priority_scheduling.c</a></li>
<li>calculate_tat()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756">non_preemptive_priority_scheduling.c</a></li>
<li>calculate_wt()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c">non_preemptive_priority_scheduling.c</a></li>
<li>calculateCentroid()&#160;:&#160;<a class="el" href="d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7">k_means_clustering.c</a></li>
<li>calculateNearst()&#160;:&#160;<a class="el" href="d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9">k_means_clustering.c</a></li>
<li>calculateScore()&#160;:&#160;<a class="el" href="db/de2/naval__battle_8c.html#ab6e31f8df36de67ff967859069ccfc56">naval_battle.c</a></li>
@ -114,7 +117,7 @@ $(document).ready(function(){initNavTree('globals_c.html',''); initResizable();
<li>closeFile()&#160;:&#160;<a class="el" href="d3/d78/words__alphabetical_8c.html#af1f9b6eb320d872ba0766dc8bd070075">words_alphabetical.c</a></li>
<li>collatz()&#160;:&#160;<a class="el" href="d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80">sol1.c</a></li>
<li>combine_function&#160;:&#160;<a class="el" href="da/da0/segment__tree_8c.html#aca549b5311d32ab1a703b4a4605821d8">segment_tree.c</a></li>
<li>compare()&#160;:&#160;<a class="el" href="d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83">sol1.c</a></li>
<li>compare()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09">non_preemptive_priority_scheduling.c</a>, <a class="el" href="d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83">sol1.c</a></li>
<li>complex_str()&#160;:&#160;<a class="el" href="da/d38/durand__kerner__roots_8c.html#a46197e91f478e99a2229562aaaac311e">durand_kerner_roots.c</a></li>
<li>convert()&#160;:&#160;<a class="el" href="db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1">infix_to_postfix.c</a>, <a class="el" href="da/d96/infix__to__postfix2_8c.html#ae363a3863a8bfbf40e7a95c2b9dbe71b">infix_to_postfix2.c</a>, <a class="el" href="d0/df3/6_8c.html#afdf3bfe2dc8aadac13c7e6d051d3bd5d">6.c</a></li>
<li>converted_len()&#160;:&#160;<a class="el" href="d1/dba/decimal__to__any__base_8c.html#a899b3a7e0f1fac5a465eac0d4b10d711">decimal_to_any_base.c</a></li>

View File

@ -144,8 +144,8 @@ $(document).ready(function(){initNavTree('globals_defs.html',''); initResizable(
<h3><a id="index_m" name="index_m"></a>- m -</h3><ul>
<li>malloc&#160;:&#160;<a class="el" href="d2/ddd/malloc__dbg_8h.html#a725f50ecaf1959d96de79b36b4788fee">malloc_dbg.h</a></li>
<li>MAX&#160;:&#160;<a class="el" href="dd/d93/client_8c.html#a392fb874e547e582e9c66a08a1f23326">client.c</a>, <a class="el" href="d1/d20/server_8c.html#a392fb874e547e582e9c66a08a1f23326">server.c</a>, <a class="el" href="d9/dcc/prim_8c.html#a392fb874e547e582e9c66a08a1f23326">prim.c</a>, <a class="el" href="d2/d6d/bubble__sort__2_8c.html#a392fb874e547e582e9c66a08a1f23326">bubble_sort_2.c</a></li>
<li>max&#160;:&#160;<a class="el" href="d1/d6b/group__kohonen__2d.html#gaffe776513b24d84b39af8ab0930fef7f">kohonen_som_topology.c</a>, <a class="el" href="d0/dcb/group__kohonen__1d.html#gaffe776513b24d84b39af8ab0930fef7f">kohonen_som_trace.c</a></li>
<li>MAX&#160;:&#160;<a class="el" href="dd/d93/client_8c.html#a392fb874e547e582e9c66a08a1f23326">client.c</a>, <a class="el" href="d1/d20/server_8c.html#a392fb874e547e582e9c66a08a1f23326">server.c</a>, <a class="el" href="d9/dcc/prim_8c.html#a392fb874e547e582e9c66a08a1f23326">prim.c</a>, <a class="el" href="d2/d6d/bubble__sort__2_8c.html#a392fb874e547e582e9c66a08a1f23326">bubble_sort_2.c</a></li>
<li>MAX_ADALINE_ITER&#160;:&#160;<a class="el" href="da/d2a/group__adaline.html#ga555ba960994e9bccb2029764588f694f">adaline_learning.c</a></li>
<li>MAX_DENO&#160;:&#160;<a class="el" href="d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12">sol1.c</a></li>
<li>MAX_DIGITS&#160;:&#160;<a class="el" href="d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61">sol1.c</a></li>

View File

@ -101,6 +101,9 @@ $(document).ready(function(){initNavTree('globals_func_c.html',''); initResizabl
<h3><a id="index_c" name="index_c"></a>- c -</h3><ul>
<li>c_atoi()&#160;:&#160;<a class="el" href="d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f">c_atoi_str_to_integer.c</a></li>
<li>calculate_ct()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df">non_preemptive_priority_scheduling.c</a></li>
<li>calculate_tat()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756">non_preemptive_priority_scheduling.c</a></li>
<li>calculate_wt()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c">non_preemptive_priority_scheduling.c</a></li>
<li>calculateCentroid()&#160;:&#160;<a class="el" href="d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7">k_means_clustering.c</a></li>
<li>calculateNearst()&#160;:&#160;<a class="el" href="d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9">k_means_clustering.c</a></li>
<li>calculateScore()&#160;:&#160;<a class="el" href="db/de2/naval__battle_8c.html#ab6e31f8df36de67ff967859069ccfc56">naval_battle.c</a></li>
@ -111,7 +114,7 @@ $(document).ready(function(){initNavTree('globals_func_c.html',''); initResizabl
<li>clear()&#160;:&#160;<a class="el" href="df/dfa/vector_8c.html#ab9dfc1249180f1e924b7333a4e5d133a">vector.c</a></li>
<li>closeFile()&#160;:&#160;<a class="el" href="d3/d78/words__alphabetical_8c.html#af1f9b6eb320d872ba0766dc8bd070075">words_alphabetical.c</a></li>
<li>collatz()&#160;:&#160;<a class="el" href="d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80">sol1.c</a></li>
<li>compare()&#160;:&#160;<a class="el" href="d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83">sol1.c</a></li>
<li>compare()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09">non_preemptive_priority_scheduling.c</a>, <a class="el" href="d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83">sol1.c</a></li>
<li>complex_str()&#160;:&#160;<a class="el" href="da/d38/durand__kerner__roots_8c.html#a46197e91f478e99a2229562aaaac311e">durand_kerner_roots.c</a></li>
<li>convert()&#160;:&#160;<a class="el" href="db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1">infix_to_postfix.c</a>, <a class="el" href="da/d96/infix__to__postfix2_8c.html#ae363a3863a8bfbf40e7a95c2b9dbe71b">infix_to_postfix2.c</a>, <a class="el" href="d0/df3/6_8c.html#afdf3bfe2dc8aadac13c7e6d051d3bd5d">6.c</a></li>
<li>converted_len()&#160;:&#160;<a class="el" href="d1/dba/decimal__to__any__base_8c.html#a899b3a7e0f1fac5a465eac0d4b10d711">decimal_to_any_base.c</a></li>

View File

@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('globals_func_i.html',''); initResizabl
<li>inList()&#160;:&#160;<a class="el" href="db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2">malloc_dbg.c</a></li>
<li>inOrder()&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc">binary_search_tree.c</a></li>
<li>inorder_display()&#160;:&#160;<a class="el" href="df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7">threaded_binary_trees.c</a></li>
<li>insert()&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#a031cc98830742bca57c0da81a0fb779f">binary_search_tree.c</a>, <a class="el" href="dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918">doubly_linked_list.c</a></li>
<li>insert()&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#a031cc98830742bca57c0da81a0fb779f">binary_search_tree.c</a>, <a class="el" href="dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918">doubly_linked_list.c</a>, <a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a5d0943b2e0e1b48b9c3a575a7f262c36">non_preemptive_priority_scheduling.c</a></li>
<li>insert_bt()&#160;:&#160;<a class="el" href="df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb">threaded_binary_trees.c</a></li>
<li>insertionSort()&#160;:&#160;<a class="el" href="db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb">insertion_sort.c</a></li>
<li>int_to_string()&#160;:&#160;<a class="el" href="dd/d53/int__to__string_8c.html#aeb4be1a1db1c5fea06e9d8b87e6c3973">int_to_string.c</a></li>
@ -119,8 +119,8 @@ $(document).ready(function(){initNavTree('globals_func_i.html',''); initResizabl
<li>isEmpty()&#160;:&#160;<a class="el" href="db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021">infix_to_postfix.c</a>, <a class="el" href="da/d96/infix__to__postfix2_8c.html#a653c98c68c558505b75b04c44b7c838e">infix_to_postfix2.c</a></li>
<li>isOprnd()&#160;:&#160;<a class="el" href="db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b">infix_to_postfix.c</a></li>
<li>isPalindrome()&#160;:&#160;<a class="el" href="df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba">palindrome.c</a></li>
<li>isprime()&#160;:&#160;<a class="el" href="d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305">sol1.c</a></li>
<li>isPrime()&#160;:&#160;<a class="el" href="da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f">prime.c</a></li>
<li>isprime()&#160;:&#160;<a class="el" href="d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305">sol1.c</a></li>
<li>isStrong()&#160;:&#160;<a class="el" href="d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5">strong_number.c</a></li>
</ul>
</div><!-- contents -->

View File

@ -100,6 +100,7 @@ $(document).ready(function(){initNavTree('globals_func_l.html',''); initResizabl
&#160;
<h3><a id="index_l" name="index_l"></a>- l -</h3><ul>
<li>l_length()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9">non_preemptive_priority_scheduling.c</a></li>
<li>lazy_sort()&#160;:&#160;<a class="el" href="dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d">sol1.c</a></li>
<li>lcm()&#160;:&#160;<a class="el" href="d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c">sol3.c</a></li>
<li>len()&#160;:&#160;<a class="el" href="df/dfa/vector_8c.html#a6f8a49f17bf315bdc30749a57bc7bc93">vector.c</a></li>

File diff suppressed because one or more lines are too long

View File

@ -119,6 +119,7 @@ $(document).ready(function(){initNavTree('globals_func_s.html',''); initResizabl
<li>shell_sort()&#160;:&#160;<a class="el" href="dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63">sol1.c</a>, <a class="el" href="d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0">shell_sort2.c</a></li>
<li>shoot()&#160;:&#160;<a class="el" href="db/de2/naval__battle_8c.html#a23e98ed36ca08c1b4bb86c86f48f6e70">naval_battle.c</a></li>
<li>show_data()&#160;:&#160;<a class="el" href="d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f">shell_sort2.c</a></li>
<li>show_list()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#adeb04e9743495f14aa4ef78631b9253c">non_preemptive_priority_scheduling.c</a></li>
<li>sigma()&#160;:&#160;<a class="el" href="d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be">sol1.c</a></li>
<li>sigma2()&#160;:&#160;<a class="el" href="d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788">sol1.c</a></li>
<li>solve()&#160;:&#160;<a class="el" href="d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc">sudoku_solver.c</a></li>

View File

@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('globals_func_t.html',''); initResizabl
&#160;
<h3><a id="index_t" name="index_t"></a>- t -</h3><ul>
<li>test()&#160;:&#160;<a class="el" href="df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5">alaw.c</a>, <a class="el" href="d1/dba/decimal__to__any__base_8c.html#aa8dca7b867074164d5f45b0f3851269d">decimal_to_any_base.c</a>, <a class="el" href="d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d">decimal_to_binary_recursion.c</a>, <a class="el" href="da/d96/infix__to__postfix2_8c.html#aa8dca7b867074164d5f45b0f3851269d">infix_to_postfix2.c</a>, <a class="el" href="dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d">int_to_string.c</a>, <a class="el" href="d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d">octal_to_hexadecimal.c</a>, <a class="el" href="da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d">segment_tree.c</a>, <a class="el" href="d3/d78/words__alphabetical_8c.html#aa8dca7b867074164d5f45b0f3851269d">words_alphabetical.c</a>, <a class="el" href="df/dfa/vector_8c.html#aa8dca7b867074164d5f45b0f3851269d">vector.c</a>, <a class="el" href="d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d">vectors_3d.c</a>, <a class="el" href="d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f">spirograph.c</a>, <a class="el" href="d9/dcc/prim_8c.html#aff3f4c22009b2aa4e385a76a8a1cdc1c">prim.c</a>, <a class="el" href="d0/df3/6_8c.html#aa8dca7b867074164d5f45b0f3851269d">6.c</a>, <a class="el" href="d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d">k_means_clustering.c</a>, <a class="el" href="d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002">cartesian_to_polar.c</a>, <a class="el" href="d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d">fibonacci_formula.c</a>, <a class="el" href="df/d43/postfix__evaluation_8c.html#aa8dca7b867074164d5f45b0f3851269d">postfix_evaluation.c</a>, <a class="el" href="da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002">prime.c</a>, <a class="el" href="d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d">prime_seive.c</a>, <a class="el" href="de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d">rot13.c</a>, <a class="el" href="d1/dc7/run__length__encoding_8c.html#aa8dca7b867074164d5f45b0f3851269d">run_length_encoding.c</a>, <a class="el" href="d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002">strong_number.c</a>, <a class="el" href="df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002">binary_search.c</a>, <a class="el" href="da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d">exponential_search.c</a>, <a class="el" href="d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d">floyd_cycle_detection_algorithm.c</a>, <a class="el" href="d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002">jump_search.c</a>, <a class="el" href="d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d">sentinel_linear_search.c</a>, <a class="el" href="dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002">bubble_sort.c</a>, <a class="el" href="d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d">bubble_sort_2.c</a>, <a class="el" href="d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002">bubble_sort_recursion.c</a>, <a class="el" href="de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d">heap_sort_2.c</a>, <a class="el" href="db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">insertion_sort.c</a>, <a class="el" href="de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d">insertion_sort_recursive.c</a>, <a class="el" href="d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">odd_even_sort.c</a>, <a class="el" href="df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">selection_sort.c</a>, <a class="el" href="dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d">selection_sort_recursive.c</a></li>
<li>test()&#160;:&#160;<a class="el" href="df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5">alaw.c</a>, <a class="el" href="d1/dba/decimal__to__any__base_8c.html#aa8dca7b867074164d5f45b0f3851269d">decimal_to_any_base.c</a>, <a class="el" href="d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d">decimal_to_binary_recursion.c</a>, <a class="el" href="da/d96/infix__to__postfix2_8c.html#aa8dca7b867074164d5f45b0f3851269d">infix_to_postfix2.c</a>, <a class="el" href="dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d">int_to_string.c</a>, <a class="el" href="d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d">octal_to_hexadecimal.c</a>, <a class="el" href="da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d">segment_tree.c</a>, <a class="el" href="d3/d78/words__alphabetical_8c.html#aa8dca7b867074164d5f45b0f3851269d">words_alphabetical.c</a>, <a class="el" href="df/dfa/vector_8c.html#aa8dca7b867074164d5f45b0f3851269d">vector.c</a>, <a class="el" href="d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d">vectors_3d.c</a>, <a class="el" href="d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f">spirograph.c</a>, <a class="el" href="d9/dcc/prim_8c.html#aff3f4c22009b2aa4e385a76a8a1cdc1c">prim.c</a>, <a class="el" href="d0/df3/6_8c.html#aa8dca7b867074164d5f45b0f3851269d">6.c</a>, <a class="el" href="d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d">k_means_clustering.c</a>, <a class="el" href="d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002">cartesian_to_polar.c</a>, <a class="el" href="d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d">fibonacci_formula.c</a>, <a class="el" href="df/d43/postfix__evaluation_8c.html#aa8dca7b867074164d5f45b0f3851269d">postfix_evaluation.c</a>, <a class="el" href="da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002">prime.c</a>, <a class="el" href="d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d">prime_seive.c</a>, <a class="el" href="de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d">rot13.c</a>, <a class="el" href="d1/dc7/run__length__encoding_8c.html#aa8dca7b867074164d5f45b0f3851269d">run_length_encoding.c</a>, <a class="el" href="d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002">strong_number.c</a>, <a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d">non_preemptive_priority_scheduling.c</a>, <a class="el" href="df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002">binary_search.c</a>, <a class="el" href="da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d">exponential_search.c</a>, <a class="el" href="d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d">floyd_cycle_detection_algorithm.c</a>, <a class="el" href="d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002">jump_search.c</a>, <a class="el" href="d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d">sentinel_linear_search.c</a>, <a class="el" href="dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002">bubble_sort.c</a>, <a class="el" href="d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d">bubble_sort_2.c</a>, <a class="el" href="d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002">bubble_sort_recursion.c</a>, <a class="el" href="de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d">heap_sort_2.c</a>, <a class="el" href="db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">insertion_sort.c</a>, <a class="el" href="de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d">insertion_sort_recursive.c</a>, <a class="el" href="d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">odd_even_sort.c</a>, <a class="el" href="df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">selection_sort.c</a>, <a class="el" href="dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d">selection_sort_recursive.c</a></li>
<li>test1()&#160;:&#160;<a class="el" href="dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9">adaline_learning.c</a>, <a class="el" href="d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0">kohonen_som_topology.c</a>, <a class="el" href="d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0">kohonen_som_trace.c</a>, <a class="el" href="d0/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af">poly_add.c</a>, <a class="el" href="d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0">qr_eigen_values.c</a></li>
<li>test2()&#160;:&#160;<a class="el" href="dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6">adaline_learning.c</a>, <a class="el" href="d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0">k_means_clustering.c</a>, <a class="el" href="d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0">kohonen_som_topology.c</a>, <a class="el" href="d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0">kohonen_som_trace.c</a>, <a class="el" href="d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409">poly_add.c</a>, <a class="el" href="d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0">qr_eigen_values.c</a></li>
<li>test3()&#160;:&#160;<a class="el" href="dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1">adaline_learning.c</a>, <a class="el" href="d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e">kohonen_som_topology.c</a>, <a class="el" href="d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e">kohonen_som_trace.c</a>, <a class="el" href="d0/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57">poly_add.c</a></li>

View File

@ -102,6 +102,7 @@ $(document).ready(function(){initNavTree('globals_func_u.html',''); initResizabl
<h3><a id="index_u" name="index_u"></a>- u -</h3><ul>
<li>unget_ch()&#160;:&#160;<a class="el" href="d9/deb/min__printf_8h.html#aa8a17b7d234a2fb2174da02074a14055">min_printf.h</a></li>
<li>unit_vec()&#160;:&#160;<a class="el" href="de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e">vectors_3d.c</a></li>
<li>update()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a9bc34d3b138bd0153a942cf6a8b31533">non_preemptive_priority_scheduling.c</a></li>
<li>user_graph()&#160;:&#160;<a class="el" href="d9/dcc/prim_8c.html#addac7a8c7bfd3e5573dad1f6aeff7768">prim.c</a></li>
</ul>
</div><!-- contents -->

View File

@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('globals_i.html',''); initResizable();
<li>inList()&#160;:&#160;<a class="el" href="db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2">malloc_dbg.c</a></li>
<li>inOrder()&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc">binary_search_tree.c</a></li>
<li>inorder_display()&#160;:&#160;<a class="el" href="df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7">threaded_binary_trees.c</a></li>
<li>insert()&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#a031cc98830742bca57c0da81a0fb779f">binary_search_tree.c</a>, <a class="el" href="dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918">doubly_linked_list.c</a></li>
<li>insert()&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#a031cc98830742bca57c0da81a0fb779f">binary_search_tree.c</a>, <a class="el" href="dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918">doubly_linked_list.c</a>, <a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a5d0943b2e0e1b48b9c3a575a7f262c36">non_preemptive_priority_scheduling.c</a></li>
<li>insert_bt()&#160;:&#160;<a class="el" href="df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb">threaded_binary_trees.c</a></li>
<li>insertionSort()&#160;:&#160;<a class="el" href="db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb">insertion_sort.c</a></li>
<li>INT_MAX_LENGTH&#160;:&#160;<a class="el" href="d9/deb/min__printf_8h.html#ab47a4bec9213d96e1dba5171e5db0e25">min_printf.h</a></li>
@ -120,8 +120,8 @@ $(document).ready(function(){initNavTree('globals_i.html',''); initResizable();
<li>isEmpty()&#160;:&#160;<a class="el" href="db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021">infix_to_postfix.c</a>, <a class="el" href="da/d96/infix__to__postfix2_8c.html#a653c98c68c558505b75b04c44b7c838e">infix_to_postfix2.c</a></li>
<li>isOprnd()&#160;:&#160;<a class="el" href="db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b">infix_to_postfix.c</a></li>
<li>isPalindrome()&#160;:&#160;<a class="el" href="df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba">palindrome.c</a></li>
<li>isprime()&#160;:&#160;<a class="el" href="d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305">sol1.c</a></li>
<li>isPrime()&#160;:&#160;<a class="el" href="da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f">prime.c</a></li>
<li>isprime()&#160;:&#160;<a class="el" href="d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305">sol1.c</a></li>
<li>isStrong()&#160;:&#160;<a class="el" href="d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5">strong_number.c</a></li>
</ul>
</div><!-- contents -->

View File

@ -100,11 +100,12 @@ $(document).ready(function(){initNavTree('globals_l.html',''); initResizable();
<div class="textblock">Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:</div>
<h3><a id="index_l" name="index_l"></a>- l -</h3><ul>
<li>l_length()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9">non_preemptive_priority_scheduling.c</a></li>
<li>large_num&#160;:&#160;<a class="el" href="d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d">factorial_large_number.c</a></li>
<li>lazy_sort()&#160;:&#160;<a class="el" href="dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d">sol1.c</a></li>
<li>lcm()&#160;:&#160;<a class="el" href="d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c">sol3.c</a></li>
<li>LEN&#160;:&#160;<a class="el" href="df/d27/alaw_8c.html#a05b49c662c073f89e86804f7856622a0">alaw.c</a></li>
<li>len()&#160;:&#160;<a class="el" href="df/dfa/vector_8c.html#a6f8a49f17bf315bdc30749a57bc7bc93">vector.c</a></li>
<li>LEN&#160;:&#160;<a class="el" href="df/d27/alaw_8c.html#a05b49c662c073f89e86804f7856622a0">alaw.c</a></li>
<li>LIMS&#160;:&#160;<a class="el" href="d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40">qr_eigen_values.c</a></li>
<li>List&#160;:&#160;<a class="el" href="dd/d29/doubly__linked__list_8c.html#aa89b8bc105d9a09d4e7c06e8b34078a7">doubly_linked_list.c</a></li>
<li>lu_decomposition()&#160;:&#160;<a class="el" href="dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4">lu_decompose.c</a></li>

File diff suppressed because one or more lines are too long

View File

@ -104,7 +104,7 @@ $(document).ready(function(){initNavTree('globals_n.html',''); initResizable();
<li>new_number()&#160;:&#160;<a class="el" href="d6/d3d/factorial__large__number_8c.html#ace5f6aa21955d4e4bdc89228c2f91234">factorial_large_number.c</a></li>
<li>newNode()&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#adf2169c1008551b20c4a59fcf0c9ab3b">binary_search_tree.c</a></li>
<li>next()&#160;:&#160;<a class="el" href="df/dfa/vector_8c.html#af2f92e8cc55e764980bc0573ab5cd06f">vector.c</a></li>
<li>node&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324">binary_search_tree.c</a>, <a class="el" href="df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6">threaded_binary_trees.c</a></li>
<li>node&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324">binary_search_tree.c</a>, <a class="el" href="df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6">threaded_binary_trees.c</a>, <a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#af4aeda155dbe167f1c1cf38cb65bf324">non_preemptive_priority_scheduling.c</a></li>
<li>number_of_paths()&#160;:&#160;<a class="el" href="d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6">sol1.c</a></li>
</ul>
</div><!-- contents -->

View File

@ -121,6 +121,7 @@ $(document).ready(function(){initNavTree('globals_s.html',''); initResizable();
<li>shell_sort()&#160;:&#160;<a class="el" href="dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63">sol1.c</a>, <a class="el" href="d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0">shell_sort2.c</a></li>
<li>shoot()&#160;:&#160;<a class="el" href="db/de2/naval__battle_8c.html#a23e98ed36ca08c1b4bb86c86f48f6e70">naval_battle.c</a></li>
<li>show_data()&#160;:&#160;<a class="el" href="d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f">shell_sort2.c</a></li>
<li>show_list()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#adeb04e9743495f14aa4ef78631b9253c">non_preemptive_priority_scheduling.c</a></li>
<li>sigma()&#160;:&#160;<a class="el" href="d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be">sol1.c</a></li>
<li>sigma2()&#160;:&#160;<a class="el" href="d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788">sol1.c</a></li>
<li>solve()&#160;:&#160;<a class="el" href="d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc">sudoku_solver.c</a></li>

View File

@ -100,7 +100,7 @@ $(document).ready(function(){initNavTree('globals_t.html',''); initResizable();
<div class="textblock">Here is a list of all documented functions, variables, defines, enums, and typedefs with links to the documentation:</div>
<h3><a id="index_t" name="index_t"></a>- t -</h3><ul>
<li>test()&#160;:&#160;<a class="el" href="df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5">alaw.c</a>, <a class="el" href="d1/dba/decimal__to__any__base_8c.html#aa8dca7b867074164d5f45b0f3851269d">decimal_to_any_base.c</a>, <a class="el" href="d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d">decimal_to_binary_recursion.c</a>, <a class="el" href="da/d96/infix__to__postfix2_8c.html#aa8dca7b867074164d5f45b0f3851269d">infix_to_postfix2.c</a>, <a class="el" href="dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d">int_to_string.c</a>, <a class="el" href="d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d">octal_to_hexadecimal.c</a>, <a class="el" href="da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d">segment_tree.c</a>, <a class="el" href="d3/d78/words__alphabetical_8c.html#aa8dca7b867074164d5f45b0f3851269d">words_alphabetical.c</a>, <a class="el" href="df/dfa/vector_8c.html#aa8dca7b867074164d5f45b0f3851269d">vector.c</a>, <a class="el" href="d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d">vectors_3d.c</a>, <a class="el" href="d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f">spirograph.c</a>, <a class="el" href="d9/dcc/prim_8c.html#aff3f4c22009b2aa4e385a76a8a1cdc1c">prim.c</a>, <a class="el" href="d0/df3/6_8c.html#aa8dca7b867074164d5f45b0f3851269d">6.c</a>, <a class="el" href="d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d">k_means_clustering.c</a>, <a class="el" href="d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002">cartesian_to_polar.c</a>, <a class="el" href="d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d">fibonacci_formula.c</a>, <a class="el" href="df/d43/postfix__evaluation_8c.html#aa8dca7b867074164d5f45b0f3851269d">postfix_evaluation.c</a>, <a class="el" href="da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002">prime.c</a>, <a class="el" href="d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d">prime_seive.c</a>, <a class="el" href="de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d">rot13.c</a>, <a class="el" href="d1/dc7/run__length__encoding_8c.html#aa8dca7b867074164d5f45b0f3851269d">run_length_encoding.c</a>, <a class="el" href="d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002">strong_number.c</a>, <a class="el" href="df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002">binary_search.c</a>, <a class="el" href="da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d">exponential_search.c</a>, <a class="el" href="d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d">floyd_cycle_detection_algorithm.c</a>, <a class="el" href="d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002">jump_search.c</a>, <a class="el" href="d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d">sentinel_linear_search.c</a>, <a class="el" href="dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002">bubble_sort.c</a>, <a class="el" href="d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d">bubble_sort_2.c</a>, <a class="el" href="d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002">bubble_sort_recursion.c</a>, <a class="el" href="de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d">heap_sort_2.c</a>, <a class="el" href="db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">insertion_sort.c</a>, <a class="el" href="de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d">insertion_sort_recursive.c</a>, <a class="el" href="d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">odd_even_sort.c</a>, <a class="el" href="df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">selection_sort.c</a>, <a class="el" href="dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d">selection_sort_recursive.c</a></li>
<li>test()&#160;:&#160;<a class="el" href="df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5">alaw.c</a>, <a class="el" href="d1/dba/decimal__to__any__base_8c.html#aa8dca7b867074164d5f45b0f3851269d">decimal_to_any_base.c</a>, <a class="el" href="d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d">decimal_to_binary_recursion.c</a>, <a class="el" href="da/d96/infix__to__postfix2_8c.html#aa8dca7b867074164d5f45b0f3851269d">infix_to_postfix2.c</a>, <a class="el" href="dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d">int_to_string.c</a>, <a class="el" href="d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d">octal_to_hexadecimal.c</a>, <a class="el" href="da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d">segment_tree.c</a>, <a class="el" href="d3/d78/words__alphabetical_8c.html#aa8dca7b867074164d5f45b0f3851269d">words_alphabetical.c</a>, <a class="el" href="df/dfa/vector_8c.html#aa8dca7b867074164d5f45b0f3851269d">vector.c</a>, <a class="el" href="d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d">vectors_3d.c</a>, <a class="el" href="d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f">spirograph.c</a>, <a class="el" href="d9/dcc/prim_8c.html#aff3f4c22009b2aa4e385a76a8a1cdc1c">prim.c</a>, <a class="el" href="d0/df3/6_8c.html#aa8dca7b867074164d5f45b0f3851269d">6.c</a>, <a class="el" href="d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d">k_means_clustering.c</a>, <a class="el" href="d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002">cartesian_to_polar.c</a>, <a class="el" href="d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d">fibonacci_formula.c</a>, <a class="el" href="df/d43/postfix__evaluation_8c.html#aa8dca7b867074164d5f45b0f3851269d">postfix_evaluation.c</a>, <a class="el" href="da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002">prime.c</a>, <a class="el" href="d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d">prime_seive.c</a>, <a class="el" href="de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d">rot13.c</a>, <a class="el" href="d1/dc7/run__length__encoding_8c.html#aa8dca7b867074164d5f45b0f3851269d">run_length_encoding.c</a>, <a class="el" href="d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002">strong_number.c</a>, <a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d">non_preemptive_priority_scheduling.c</a>, <a class="el" href="df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002">binary_search.c</a>, <a class="el" href="da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d">exponential_search.c</a>, <a class="el" href="d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d">floyd_cycle_detection_algorithm.c</a>, <a class="el" href="d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002">jump_search.c</a>, <a class="el" href="d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d">sentinel_linear_search.c</a>, <a class="el" href="dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002">bubble_sort.c</a>, <a class="el" href="d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d">bubble_sort_2.c</a>, <a class="el" href="d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002">bubble_sort_recursion.c</a>, <a class="el" href="de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d">heap_sort_2.c</a>, <a class="el" href="db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">insertion_sort.c</a>, <a class="el" href="de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d">insertion_sort_recursive.c</a>, <a class="el" href="d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">odd_even_sort.c</a>, <a class="el" href="df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d">selection_sort.c</a>, <a class="el" href="dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d">selection_sort_recursive.c</a></li>
<li>test1()&#160;:&#160;<a class="el" href="dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9">adaline_learning.c</a>, <a class="el" href="d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0">kohonen_som_topology.c</a>, <a class="el" href="d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0">kohonen_som_trace.c</a>, <a class="el" href="d0/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af">poly_add.c</a>, <a class="el" href="d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0">qr_eigen_values.c</a></li>
<li>test2()&#160;:&#160;<a class="el" href="dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6">adaline_learning.c</a>, <a class="el" href="d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0">k_means_clustering.c</a>, <a class="el" href="d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0">kohonen_som_topology.c</a>, <a class="el" href="d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0">kohonen_som_trace.c</a>, <a class="el" href="d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409">poly_add.c</a>, <a class="el" href="d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0">qr_eigen_values.c</a></li>
<li>test3()&#160;:&#160;<a class="el" href="dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1">adaline_learning.c</a>, <a class="el" href="d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e">kohonen_som_topology.c</a>, <a class="el" href="d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e">kohonen_som_trace.c</a>, <a class="el" href="d0/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57">poly_add.c</a></li>

View File

@ -108,7 +108,7 @@ $(document).ready(function(){initNavTree('globals_type.html',''); initResizable(
<li>List&#160;:&#160;<a class="el" href="dd/d29/doubly__linked__list_8c.html#aa89b8bc105d9a09d4e7c06e8b34078a7">doubly_linked_list.c</a></li>
<li>mat_3x3&#160;:&#160;<a class="el" href="dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7">geometry_datatypes.h</a></li>
<li>mem_info&#160;:&#160;<a class="el" href="db/d84/malloc__dbg_8c.html#ab6619fb17769f2e4e2e36c9ef2dda3c6">malloc_dbg.c</a></li>
<li>node&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324">binary_search_tree.c</a>, <a class="el" href="df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6">threaded_binary_trees.c</a></li>
<li>node&#160;:&#160;<a class="el" href="da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324">binary_search_tree.c</a>, <a class="el" href="df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6">threaded_binary_trees.c</a>, <a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#af4aeda155dbe167f1c1cf38cb65bf324">non_preemptive_priority_scheduling.c</a></li>
<li>quaternion&#160;:&#160;<a class="el" href="dc/d9a/group__quats.html#gaacd70a16b61dd47a19eb5fb729c2669b">geometry_datatypes.h</a></li>
<li>segment_tree&#160;:&#160;<a class="el" href="da/da0/segment__tree_8c.html#ac206721972f739510cb11f7c0a6a8f63">segment_tree.c</a></li>
<li>vec_3d&#160;:&#160;<a class="el" href="de/d7b/group__vec__3d.html#gaf9ee870d4922e488bdd3e7262485c270">geometry_datatypes.h</a></li>

View File

@ -102,6 +102,7 @@ $(document).ready(function(){initNavTree('globals_u.html',''); initResizable();
<h3><a id="index_u" name="index_u"></a>- u -</h3><ul>
<li>unget_ch()&#160;:&#160;<a class="el" href="d9/deb/min__printf_8h.html#aa8a17b7d234a2fb2174da02074a14055">min_printf.h</a></li>
<li>unit_vec()&#160;:&#160;<a class="el" href="de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e">vectors_3d.c</a></li>
<li>update()&#160;:&#160;<a class="el" href="d2/d87/non__preemptive__priority__scheduling_8c.html#a9bc34d3b138bd0153a942cf6a8b31533">non_preemptive_priority_scheduling.c</a></li>
<li>user_graph()&#160;:&#160;<a class="el" href="d9/dcc/prim_8c.html#addac7a8c7bfd3e5573dad1f6aeff7768">prim.c</a></li>
</ul>
</div><!-- contents -->

View File

@ -102,10 +102,10 @@ $(document).ready(function(){initNavTree('index.html',''); initResizable(); });
<div class="contents">
<div class="textblock"><p ><a class="anchor" id="mainpage"></a></p>
<p ><a href="https://gitpod.io/#https://github.com/TheAlgorithms/C" target="_blank"><img src="https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod" alt="Gitpod Ready-to-Code" class="inline"/></a> <a href="https://lgtm.com/projects/g/TheAlgorithms/C/context:cpp" target="_blank"><img src="https://img.shields.io/lgtm/grade/cpp/g/TheAlgorithms/C.svg?logo=lgtm&amp;logoWidth=18" alt="Language grade: C/C++" style="pointer-events: none;" class="inline"/></a> <a href="https://github.com/TheAlgorithms/C/actions/workflows/codeql_analysis.yml" target="_blank"><img src="https://github.com/TheAlgorithms/C/actions/workflows/codeql_analysis.yml/badge.svg" alt="CodeQL CI" style="pointer-events: none;" class="inline"/></a> <a href="https://gitter.im/TheAlgorithms" target="_blank"><img src="https://img.shields.io/badge/Chat-Gitter-ff69b4.svg?label=Chat&amp;logo=gitter&amp;style=flat-square" alt="Gitter chat" style="pointer-events: none;" class="inline"/></a> <a href="https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md" target="_blank"><img src="https://img.shields.io/static/v1.svg?label=Contributions&amp;message=Welcome&amp;color=0059b3&amp;style=flat-square" alt="contributions welcome" style="pointer-events: none;" class="inline"/></a> <img src="https://img.shields.io/github/repo-size/TheAlgorithms/C?color=red&amp;style=flat-square" alt="GitHub repo size" class="inline"/> <a href="https://TheAlgorithms.github.io/C" target="_blank"><img src="https://github.com/TheAlgorithms/C/workflows/Doxygen%20CI/badge.svg" alt="Doxygen CI" style="pointer-events: none;" class="inline"/></a> <a href="https://github.com/TheAlgorithms/C/actions?query=workflow%3A%22Awesome+CI+Workflow%22" target="_blank"><img src="https://github.com/TheAlgorithms/C/workflows/Awesome%20CI%20Workflow/badge.svg" alt="Awesome CI" style="pointer-events: none;" class="inline"/></a> <a href="https://liberapay.com/TheAlgorithms" target="_blank"><img src="https://img.shields.io/liberapay/receives/TheAlgorithms.svg?logo=liberapay" alt="Income" style="pointer-events: none;" class="inline"/></a> <a href="https://the-algorithms.com/discord/" target="_blank"><img src="https://img.shields.io/discord/808045925556682782.svg?logo=discord&amp;colorB=5865F2" alt="Discord chat" style="pointer-events: none;" class="inline"/></a> <a href="https://liberapay.com/TheAlgorithms/donate" target="_blank"><img src="https://liberapay.com/assets/widgets/donate.svg" alt="Donate" style="pointer-events: none;" class="inline"/></a></p>
<h1><a class="anchor" id="autotoc_md74"></a>
<h1><a class="anchor" id="autotoc_md75"></a>
Overview</h1>
<p >The repository is a collection of open-source implementations of a variety of algorithms implemented in C and licensed under <a href="https://github.com/TheAlgorithms/C/blob/master/LICENSE" target="_blank">GPLv3 License</a>. The algorithms span a variety of topics from computer science, mathematics and statistics, data science, machine learning, engineering, etc.. The implementations and their associated documentations are meant to provide a learning resource for educators and students. Hence, one may find more than one implementation for the same objective but using different algorithm strategies and optimizations.</p>
<h1><a class="anchor" id="autotoc_md75"></a>
<h1><a class="anchor" id="autotoc_md76"></a>
Features</h1>
<ul>
<li>The repository provides implementations of various algorithms in one of the most fundamental general purpose languages - <a href="https://en.wikipedia.org/wiki/C_(programming_language)" target="_blank">C</a>.</li>
@ -116,12 +116,12 @@ Features</h1>
<li>Self-checks within programs ensure correct implementations with confidence.</li>
<li>Modular implementations and OpenSource licensing enable the functions to be utilized conveniently in other applications.</li>
</ul>
<h1><a class="anchor" id="autotoc_md76"></a>
<h1><a class="anchor" id="autotoc_md77"></a>
Documentation</h1>
<p ><a href="https://TheAlgorithms.github.io/C" target="_blank">Online Documentation</a> is generated from the repository source codes directly. The documentation contains all resources including source code snippets, details on execution of the programs, diagrammatic representation of program flow, and links to external resources where necessary. Click on <a href="https://TheAlgorithms.github.io/C/files.html" target="_blank">Files menu</a> to see the list of all the files documented with the code.</p>
<p ><a href="https://thealgorithms.github.io/C" target="_blank">Documentation of Algorithms in C</a> by <a href="https://github.com/TheAlgorithms/C/graphs/contributors" target="_blank">The Algorithms Contributors</a> is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/?ref=chooser-v1" target="_blank">CC BY-SA 4.0</a><br />
<a href="https://creativecommons.org/licenses/by-sa/4.0"><img src="https://mirrors.creativecommons.org/presskit/icons/cc.svg" alt="Creative Commons License" style="pointer-events: none; height:22px!important;margin-left: 3px;vertical-align:text-bottom;" class="inline"/><img src="https://mirrors.creativecommons.org/presskit/icons/by.svg" alt="Credit must be given to the creator" style="pointer-events: none; height:22px!important;margin-left: 3px;vertical-align:text-bottom;" class="inline"/><img src="https://mirrors.creativecommons.org/presskit/icons/sa.svg" alt="Adaptations must be shared under the same terms" style="pointer-events: none; height:22px!important;margin-left: 3px;vertical-align:text-bottom;" class="inline"/></a></p>
<h1><a class="anchor" id="autotoc_md77"></a>
<h1><a class="anchor" id="autotoc_md78"></a>
Contributions</h1>
<p >As a community developed and maintained repository, we welcome new un-plagiarized quality contributions. Please read our <a href="https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md" target="_blank">Contribution Guidelines</a>. </p>
</div></div><!-- PageDoc -->

View File

@ -26,10 +26,10 @@ var NAVTREE =
[
[ "Algorithms_in_C", "index.html", [
[ "The Algorithms - C", "index.html", [
[ "Overview", "index.html#autotoc_md74", null ],
[ "Features", "index.html#autotoc_md75", null ],
[ "Documentation", "index.html#autotoc_md76", null ],
[ "Contributions", "index.html#autotoc_md77", null ]
[ "Overview", "index.html#autotoc_md75", null ],
[ "Features", "index.html#autotoc_md76", null ],
[ "Documentation", "index.html#autotoc_md77", null ],
[ "Contributions", "index.html#autotoc_md78", null ]
] ],
[ "Contributor Covenant Code of Conduct", "d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html", [
[ "Our Pledge", "d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html#autotoc_md1", null ],
@ -94,19 +94,20 @@ var NAVTREE =
[ "Machine Learning", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md57", null ],
[ "Misc", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md58", null ],
[ "Numerical Methods", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md59", null ],
[ "Project Euler", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md60", null ],
[ "Searching", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md61", null ],
[ "Sorting", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md62", null ]
[ "Process Scheduling Algorithms", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md60", null ],
[ "Project Euler", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md61", null ],
[ "Searching", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md62", null ],
[ "Sorting", "d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md63", null ]
] ],
[ "Sample solutions for <a href=\"http://exercism.io/\" target=\"_blank\" >exercism.io</a>", "d7/db5/md_exercism__r_e_a_d_m_e.html", null ],
[ "Hash algorithms", "d4/dcb/md_hash__r_e_a_d_m_e.html", null ],
[ "LeetCode", "d6/d77/md_leetcode__d_i_r_e_c_t_o_r_y.html", null ],
[ "📚 Contributing 📚", "df/d58/md_leetcode__r_e_a_d_m_e.html", [
[ "💻 Cloning/setting up the project 💻", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md69", null ],
[ "📝 Adding a new solution 📝", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md70", [
[ "📜 Adding your new solution to the list 📜", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md71", null ]
[ "💻 Cloning/setting up the project 💻", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md70", null ],
[ "📝 Adding a new solution 📝", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md71", [
[ "📜 Adding your new solution to the list 📜", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md72", null ]
] ],
[ "📦 Committing your changes 📦", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md72", null ]
[ "📦 Committing your changes 📦", "df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md73", null ]
] ],
[ "ProjectEuler", "d8/d81/md_project_euler__r_e_a_d_m_e.html", null ],
[ "Guidelines for reviewers and maintainers", "dc/db4/md__r_e_v_i_e_w_e_r__c_o_d_e.html", null ],
@ -135,10 +136,10 @@ var NAVTREE =
var NAVTREEINDEX =
[
"annotated.html",
"d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be",
"d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md39",
"dd/d79/remote__command__exec__udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2",
"globals_s.html"
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99",
"d8/d75/fibonacci__formula_8c.html#a4d369ae048e0ccc7f515a243533cd946",
"dd/d10/struct_stack.html",
"globals_func_o.html"
];
var SYNCONMSG = 'click to disable panel synchronisation';

View File

@ -16,15 +16,15 @@ var NAVTREEINDEX0 =
"d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614":[16,0,12,3,15],
"d0/d57/hash__xor8_8c.html":[14,1,4],
"d0/d6b/structelem.html":[15,0,14],
"d0/d6c/problem__4_2sol_8c.html":[16,0,15,16,0],
"d0/d6c/problem__4_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,16,0,1],
"d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4":[16,0,15,16,0,0],
"d0/d6d/problem__10_2sol1_8c.html":[16,0,15,1,0],
"d0/d6d/problem__10_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,15,1,0,1],
"d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f":[16,0,15,1,0,0],
"d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5":[16,0,15,1,0,2],
"d0/d7f/so1_8c.html":[16,0,15,8,0],
"d0/d7f/so1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,8,0,0],
"d0/d6c/problem__4_2sol_8c.html":[16,0,16,16,0],
"d0/d6c/problem__4_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,16,0,1],
"d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4":[16,0,16,16,0,0],
"d0/d6d/problem__10_2sol1_8c.html":[16,0,16,1,0],
"d0/d6d/problem__10_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,16,1,0,1],
"d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f":[16,0,16,1,0,0],
"d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5":[16,0,16,1,0,2],
"d0/d7f/so1_8c.html":[16,0,16,8,0],
"d0/d7f/so1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,8,0,0],
"d0/d8a/octal__to__hexadecimal_8c.html":[16,0,2,7],
"d0/d8a/octal__to__hexadecimal_8c.html#a823ef5170955cfef40e07d9a4d2e87e2":[16,0,2,7,2],
"d0/d8a/octal__to__hexadecimal_8c.html#a86a4edb605c2a03d9175c59de679347d":[16,0,2,7,1],
@ -65,8 +65,8 @@ var NAVTREEINDEX0 =
"d1/d20/server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2":[16,0,1,3,1],
"d1/d20/server_8c.html#ac17020a38607ab29ce18939d5194a32a":[16,0,1,3,3],
"d1/d20/server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,1,3,4],
"d1/d2f/problem__7_2sol_8c.html":[16,0,15,20,0],
"d1/d2f/problem__7_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,20,0,0],
"d1/d2f/problem__7_2sol_8c.html":[16,0,16,20,0],
"d1/d2f/problem__7_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,20,0,0],
"d1/d5e/structobservation.html":[14,2,1,0],
"d1/d5e/structobservation.html#a04f3dcfd59dd91353395e35c9831fade":[14,2,1,0,1],
"d1/d5e/structobservation.html#a2db8ace685c08aa7b52f5a28b0843aab":[14,2,1,0,0],
@ -85,11 +85,11 @@ var NAVTREEINDEX0 =
"d1/d6b/tcp__full__duplex__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2":[16,0,1,5,0],
"d1/d6b/tcp__full__duplex__server_8c.html#a7e15c8e2885871839fc2b820dfbdb4ce":[16,0,1,5,1],
"d1/d6b/tcp__full__duplex__server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,1,5,2],
"d1/d94/odd__even__sort_8c.html":[16,0,17,8],
"d1/d94/odd__even__sort_8c.html#a17761a0788916faded6e2ca1f478ad33":[16,0,17,8,1],
"d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,8,3],
"d1/d94/odd__even__sort_8c.html#ac2eee54959bc040cfcb56d2d8047853a":[16,0,17,8,2],
"d1/d94/odd__even__sort_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,8,0],
"d1/d94/odd__even__sort_8c.html":[16,0,18,8],
"d1/d94/odd__even__sort_8c.html#a17761a0788916faded6e2ca1f478ad33":[16,0,18,8,1],
"d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,18,8,3],
"d1/d94/odd__even__sort_8c.html#ac2eee54959bc040cfcb56d2d8047853a":[16,0,18,8,2],
"d1/d94/odd__even__sort_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,18,8,0],
"d1/d98/tcp__full__duplex__client_8c.html":[16,0,1,4],
"d1/d98/tcp__full__duplex__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2":[16,0,1,4,0],
"d1/d98/tcp__full__duplex__client_8c.html#a7e15c8e2885871839fc2b820dfbdb4ce":[16,0,1,4,1],
@ -122,37 +122,49 @@ var NAVTREEINDEX0 =
"d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d":[14,3,3],
"d1/ded/group__misc.html#gac0f2228420376f4db7e1274f2b41667c":[14,3,1],
"d1/ded/group__misc.html#gac1a7a8e00eeb590511465c28fae16e54":[14,3,2],
"d1/df9/problem__26_2sol1_8c.html":[16,0,15,14,0],
"d1/df9/problem__26_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,15,14,0,3],
"d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12":[16,0,15,14,0,0],
"d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe":[16,0,15,14,0,1],
"d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83":[16,0,15,14,0,2],
"d1/df9/problem__26_2sol1_8c.html":[16,0,16,14,0],
"d1/df9/problem__26_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,16,14,0,3],
"d1/df9/problem__26_2sol1_8c.html#a619eec3220cebd7c5e455edbb14e9b12":[16,0,16,14,0,0],
"d1/df9/problem__26_2sol1_8c.html#aabf4f709c8199e41cf279c77112345fe":[16,0,16,14,0,1],
"d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83":[16,0,16,14,0,2],
"d2/d36/structqueue.html":[15,0,31],
"d2/d6a/struct_graph_rep.html":[15,0,17],
"d2/d6d/bubble__sort__2_8c.html":[16,0,17,2],
"d2/d6d/bubble__sort__2_8c.html#a392fb874e547e582e9c66a08a1f23326":[16,0,17,2,0],
"d2/d6d/bubble__sort__2_8c.html#a7406723363363b34f29d18f5a80f1281":[16,0,17,2,1],
"d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,2,3],
"d2/d6d/bubble__sort__2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,2,2],
"d2/d6d/bubble__sort__2_8c.html":[16,0,18,2],
"d2/d6d/bubble__sort__2_8c.html#a392fb874e547e582e9c66a08a1f23326":[16,0,18,2,0],
"d2/d6d/bubble__sort__2_8c.html#a7406723363363b34f29d18f5a80f1281":[16,0,18,2,1],
"d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,18,2,3],
"d2/d6d/bubble__sort__2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,18,2,2],
"d2/d71/struct_a_v_lnode.html":[15,0,4],
"d2/d83/merge__sort_8c.html":[16,0,17,7],
"d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,17,7,0],
"d2/d93/problem__8_2sol2_8c.html":[16,0,15,21,1],
"d2/d93/problem__8_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,15,21,1,0],
"d2/d9b/floyd__cycle__detection__algorithm_8c.html":[16,0,16,2],
"d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,16,2,2],
"d2/d9b/floyd__cycle__detection__algorithm_8c.html#ac7af29ae53c6659f2881fb080b080f9d":[16,0,16,2,0],
"d2/d9b/floyd__cycle__detection__algorithm_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,2,1],
"d2/da8/bead__sort_8c.html":[16,0,17,0],
"d2/da8/bead__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[16,0,17,0,3],
"d2/d83/merge__sort_8c.html":[16,0,18,7],
"d2/d83/merge__sort_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,18,7,0],
"d2/d87/non__preemptive__priority__scheduling_8c.html":[16,0,15,0],
"d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09":[16,0,15,0,5],
"d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9":[16,0,15,0,7],
"d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756":[16,0,15,0,3],
"d2/d87/non__preemptive__priority__scheduling_8c.html#a5d0943b2e0e1b48b9c3a575a7f262c36":[16,0,15,0,6],
"d2/d87/non__preemptive__priority__scheduling_8c.html#a9bc34d3b138bd0153a942cf6a8b31533":[16,0,15,0,11],
"d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,15,0,10],
"d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df":[16,0,15,0,2],
"d2/d87/non__preemptive__priority__scheduling_8c.html#adeb04e9743495f14aa4ef78631b9253c":[16,0,15,0,9],
"d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c":[16,0,15,0,4],
"d2/d87/non__preemptive__priority__scheduling_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,0,8],
"d2/d87/non__preemptive__priority__scheduling_8c.html#af4aeda155dbe167f1c1cf38cb65bf324":[16,0,15,0,1],
"d2/d93/problem__8_2sol2_8c.html":[16,0,16,21,1],
"d2/d93/problem__8_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,16,21,1,0],
"d2/d9b/floyd__cycle__detection__algorithm_8c.html":[16,0,17,2],
"d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,2,2],
"d2/d9b/floyd__cycle__detection__algorithm_8c.html#ac7af29ae53c6659f2881fb080b080f9d":[16,0,17,2,0],
"d2/d9b/floyd__cycle__detection__algorithm_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,2,1],
"d2/da8/bead__sort_8c.html":[16,0,18,0],
"d2/da8/bead__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[16,0,18,0,3],
"d2/daa/structadaline.html":[14,2,0,0],
"d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657":[14,2,0,0,2],
"d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1":[14,2,0,0,1],
"d2/daa/structadaline.html#a85dbd7cce6195d11ebb388220b96bde2":[14,2,0,0,0],
"d2/dae/problem__1_2sol2_8c.html":[16,0,15,0,1],
"d2/dae/problem__1_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,0,1,0],
"d2/dbc/problem__3_2sol2_8c.html":[16,0,15,15,1],
"d2/dbc/problem__3_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,15,1,0],
"d2/dae/problem__1_2sol2_8c.html":[16,0,16,0,1],
"d2/dae/problem__1_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,0,1,0],
"d2/dbc/problem__3_2sol2_8c.html":[16,0,16,15,1],
"d2/dbc/problem__3_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,15,1,0],
"d2/dc3/carray_8h_source.html":[16,0,3,0,0],
"d2/ddd/malloc__dbg_8h.html":[16,0,4,1],
"d2/ddd/malloc__dbg_8h.html#a37914d05ba1fe8848aa1b48cda719422":[16,0,4,1,5],
@ -181,10 +193,10 @@ var NAVTREEINDEX0 =
"d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc":[16,0,12,2,16],
"d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018":[16,0,12,2,15],
"d3/d39/hash__adler32_8c.html":[14,1,0],
"d3/d47/modified__binary__search_8c.html":[16,0,16,4],
"d3/d47/modified__binary__search_8c.html#a0cfaa56aacf960e4628a0fb27add8890":[16,0,16,4,0],
"d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f":[16,0,16,4,2],
"d3/d47/modified__binary__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,4,1],
"d3/d47/modified__binary__search_8c.html":[16,0,17,4],
"d3/d47/modified__binary__search_8c.html#a0cfaa56aacf960e4628a0fb27add8890":[16,0,17,4,0],
"d3/d47/modified__binary__search_8c.html#a7df9a198e30cded6229d79bef7591f8f":[16,0,17,4,2],
"d3/d47/modified__binary__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,4,1],
"d3/d5a/struct__large__num.html":[15,0,2],
"d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0":[15,0,2,1],
"d3/d5a/struct__large__num.html#afaf353a072cf050ac86ac6e39868bcc9":[15,0,2,0],
@ -237,17 +249,5 @@ var NAVTREEINDEX0 =
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html":[15,0,24],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3":[15,0,24,5],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1f13725b3de5ca6ab99b238b712cb417":[15,0,24,2],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde":[15,0,24,6],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99":[15,0,24,3],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d":[15,0,24,0],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a934ad84d159c35b24ff54f7eceb1c6be":[15,0,24,1],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007":[15,0,24,4],
"d4/d7b/problem__6_2sol_8c.html":[16,0,15,19,0],
"d4/d7b/problem__6_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,19,0,0],
"d4/d83/problem__401_2sol1_8c.html":[16,0,15,17,0],
"d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788":[16,0,15,17,0,6],
"d4/d83/problem__401_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,17,0,4],
"d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456":[16,0,15,17,0,3],
"d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215":[16,0,15,17,0,2],
"d4/d83/problem__401_2sol1_8c.html#a7a9a231e30b47bc0345749c8bd1e5077":[16,0,15,17,0,0]
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde":[15,0,24,6]
};

View File

@ -1,7 +1,19 @@
var NAVTREEINDEX1 =
{
"d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be":[16,0,15,17,0,5],
"d4/d83/problem__401_2sol1_8c.html#ade1bdf2529e3c58f53bfb4d844f3a9d3":[16,0,15,17,0,1],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a731603550d2238abb179f2b572f20d99":[15,0,24,3],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d":[15,0,24,0],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a934ad84d159c35b24ff54f7eceb1c6be":[15,0,24,1],
"d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007":[15,0,24,4],
"d4/d7b/problem__6_2sol_8c.html":[16,0,16,19,0],
"d4/d7b/problem__6_2sol_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,19,0,0],
"d4/d83/problem__401_2sol1_8c.html":[16,0,16,17,0],
"d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788":[16,0,16,17,0,6],
"d4/d83/problem__401_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,17,0,4],
"d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456":[16,0,16,17,0,3],
"d4/d83/problem__401_2sol1_8c.html#a7380e14d595d560007b02ce516b6b215":[16,0,16,17,0,2],
"d4/d83/problem__401_2sol1_8c.html#a7a9a231e30b47bc0345749c8bd1e5077":[16,0,16,17,0,0],
"d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be":[16,0,16,17,0,5],
"d4/d83/problem__401_2sol1_8c.html#ade1bdf2529e3c58f53bfb4d844f3a9d3":[16,0,16,17,0,1],
"d4/d99/fibonacci__fast_8c.html":[16,0,13,4],
"d4/d99/fibonacci__fast_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,13,4,1],
"d4/d99/fibonacci__fast_8c.html#a7a3d55bd19854075cba2eed6b63cb2d3":[16,0,13,4,0],
@ -12,13 +24,13 @@ var NAVTREEINDEX1 =
"d4/d99/ode__semi__implicit__euler_8c.html#a97075291390a68c262ed66e157a57eb4":[16,0,14,5,3],
"d4/d99/ode__semi__implicit__euler_8c.html#a9ceb646336224ee890a269d0b4600d09":[16,0,14,5,0],
"d4/d99/ode__semi__implicit__euler_8c.html#ad80059877222f885b549f2d0a3dc6b55":[16,0,14,5,4],
"d4/dbd/problem__23_2sol2_8c.html":[16,0,15,12,1],
"d4/dbd/problem__23_2sol2_8c.html#a1aca7f530f82b27100262adba9e7556b":[16,0,15,12,1,1],
"d4/dbd/problem__23_2sol2_8c.html#a34f4ad85151e3a43368ae67f42347f56":[16,0,15,12,1,2],
"d4/dbd/problem__23_2sol2_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478":[16,0,15,12,1,3],
"d4/dbd/problem__23_2sol2_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,12,1,4],
"d4/dbd/problem__23_2sol2_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf":[16,0,15,12,1,0],
"d4/dbd/problem__23_2sol2_8c.html#af920a16d6ef69dd604b283f427892e06":[16,0,15,12,1,5],
"d4/dbd/problem__23_2sol2_8c.html":[16,0,16,12,1],
"d4/dbd/problem__23_2sol2_8c.html#a1aca7f530f82b27100262adba9e7556b":[16,0,16,12,1,1],
"d4/dbd/problem__23_2sol2_8c.html#a34f4ad85151e3a43368ae67f42347f56":[16,0,16,12,1,2],
"d4/dbd/problem__23_2sol2_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478":[16,0,16,12,1,3],
"d4/dbd/problem__23_2sol2_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,12,1,4],
"d4/dbd/problem__23_2sol2_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf":[16,0,16,12,1,0],
"d4/dbd/problem__23_2sol2_8c.html#af920a16d6ef69dd604b283f427892e06":[16,0,16,12,1,5],
"d4/dcb/md_hash__r_e_a_d_m_e.html":[9],
"d4/dcc/strong__number_8c.html":[16,0,13,13],
"d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5":[16,0,13,13,0],
@ -27,21 +39,21 @@ var NAVTREEINDEX1 =
"d4/dd4/struct_graph.html":[15,0,16],
"d4/dd9/structtrie.html":[15,0,40],
"d4/de3/hash__djb2_8c.html":[14,1,2],
"d4/dea/problem__14_2sol1_8c.html":[16,0,15,4,0],
"d4/dea/problem__14_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,4,0,1],
"d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80":[16,0,15,4,0,0],
"d4/dea/problem__14_2sol1_8c.html":[16,0,16,4,0],
"d4/dea/problem__14_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,4,0,1],
"d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80":[16,0,16,4,0,0],
"d4/dfe/struct_dict.html":[15,0,10],
"d5/d23/qr__decomposition_8c.html":[16,0,14,7],
"d5/d23/qr__decomposition_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,14,7,0],
"d5/d38/bubble__sort__recursion_8c.html":[16,0,17,3],
"d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f":[16,0,17,3,0],
"d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3":[16,0,17,3,2],
"d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002":[16,0,17,3,3],
"d5/d38/bubble__sort__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,3,1],
"d5/d3d/problem__5_2sol2_8c.html":[16,0,15,18,1],
"d5/d3d/problem__5_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,18,1,1],
"d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f":[16,0,15,18,1,0],
"d5/d3d/problem__5_2sol2_8c.html#adb59595677da81f071c34f3847fdbaa6":[16,0,15,18,1,2],
"d5/d38/bubble__sort__recursion_8c.html":[16,0,18,3],
"d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f":[16,0,18,3,0],
"d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3":[16,0,18,3,2],
"d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002":[16,0,18,3,3],
"d5/d38/bubble__sort__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,18,3,1],
"d5/d3d/problem__5_2sol2_8c.html":[16,0,16,18,1],
"d5/d3d/problem__5_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,18,1,1],
"d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f":[16,0,16,18,1,0],
"d5/d3d/problem__5_2sol2_8c.html#adb59595677da81f071c34f3847fdbaa6":[16,0,16,18,1,2],
"d5/d4c/group__sorting.html":[14,5],
"d5/d4c/group__sorting.html#ga2fb01e00dedb437a42010f6309e7eba8":[14,5,1],
"d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8":[14,5,8],
@ -54,10 +66,10 @@ var NAVTREEINDEX1 =
"d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f":[14,5,7],
"d5/d5c/test__min__printf_8c.html":[16,0,4,4],
"d5/d5c/test__min__printf_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,4,4,0],
"d5/d7c/problem__5_2sol3_8c.html":[16,0,15,18,2],
"d5/d7c/problem__5_2sol3_8c.html#a59347107cbfdf48d51108e50280e760d":[16,0,15,18,2,0],
"d5/d7c/problem__5_2sol3_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,18,2,2],
"d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c":[16,0,15,18,2,1],
"d5/d7c/problem__5_2sol3_8c.html":[16,0,16,18,2],
"d5/d7c/problem__5_2sol3_8c.html#a59347107cbfdf48d51108e50280e760d":[16,0,16,18,2,0],
"d5/d7c/problem__5_2sol3_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,18,2,2],
"d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c":[16,0,16,18,2,1],
"d5/d7e/struct_t.html":[15,0,37],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html":[7],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md46":[7,0],
@ -77,10 +89,19 @@ var NAVTREEINDEX1 =
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md60":[7,14],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md61":[7,15],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md62":[7,16],
"d5/d88/md__d_i_r_e_c_t_o_r_y.html#autotoc_md63":[7,17],
"d5/da1/structnode.html":[15,0,27],
"d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2":[15,0,27,0],
"d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c":[15,0,27,2],
"d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0":[15,0,27,1],
"d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063":[15,0,27,6],
"d5/da1/structnode.html#a2d890bb9f6af0ffd73fe79b21124c2a2":[15,0,27,3],
"d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b":[15,0,27,7],
"d5/da1/structnode.html#a51e160f22dc6064bac4a4f9f1d931c2c":[15,0,27,8],
"d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc":[15,0,27,0],
"d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653":[15,0,27,10],
"d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3":[15,0,27,9],
"d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e":[15,0,27,1],
"d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454":[15,0,27,4],
"d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882":[15,0,27,2],
"d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0":[15,0,27,5],
"d5/db4/struct_edge.html":[15,0,13],
"d5/db4/structvec__3d__.html":[14,0,0,0],
"d5/db4/structvec__3d__.html#a3339a40de7385fa55bee30be81c098c6":[14,0,0,0,2],
@ -89,10 +110,10 @@ var NAVTREEINDEX1 =
"d5/db8/vectors__3d_8c.html":[16,0,7,2],
"d5/db8/vectors__3d_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,7,2,3],
"d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,7,2,5],
"d5/de2/sentinel__linear__search_8c.html":[16,0,16,5],
"d5/de2/sentinel__linear__search_8c.html#a16a7a1ef83db52643fe23d48280065ce":[16,0,16,5,1],
"d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,16,5,2],
"d5/de2/sentinel__linear__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,5,0],
"d5/de2/sentinel__linear__search_8c.html":[16,0,17,5],
"d5/de2/sentinel__linear__search_8c.html#a16a7a1ef83db52643fe23d48280065ce":[16,0,17,5,1],
"d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,5,2],
"d5/de2/sentinel__linear__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,5,0],
"d5/df4/group__sudoku.html":[14,4],
"d5/df4/group__sudoku.html#ga1cd43df3f4187845ce186042fe53e6f1":[14,4,3],
"d5/df4/group__sudoku.html#ga3a0ec150ac9d0cb6b28279d36d95d72f":[14,4,2],
@ -101,8 +122,8 @@ var NAVTREEINDEX1 =
"d5/df4/group__sudoku.html#ga702ff4f95dde780c7d04fcdd1021b6c1":[14,4,6],
"d5/df4/group__sudoku.html#ga85d25d3b40017436f264a103685e4c55":[14,4,5],
"d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc":[14,4,7],
"d6/d1b/sol4_8c.html":[16,0,15,0,3],
"d6/d1b/sol4_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,0,3,0],
"d6/d1b/sol4_8c.html":[16,0,16,0,3],
"d6/d1b/sol4_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,0,3,0],
"d6/d2b/tcp__half__duplex__server_8c.html":[16,0,1,7],
"d6/d2b/tcp__half__duplex__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2":[16,0,1,7,0],
"d6/d2b/tcp__half__duplex__server_8c.html#a7e15c8e2885871839fc2b820dfbdb4ce":[16,0,1,7,1],
@ -122,21 +143,21 @@ var NAVTREEINDEX1 =
"d6/d3d/factorial__large__number_8c.html#af2869d36c22a2b8f93d3166a84e124b3":[16,0,13,3,2],
"d6/d42/structdynamic__array.html":[15,0,12],
"d6/d48/isogram_8h_source.html":[16,0,5,2,0],
"d6/d64/problem__7_2sol2_8c.html":[16,0,15,20,1],
"d6/d64/problem__7_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,20,1,0],
"d6/d64/problem__7_2sol2_8c.html":[16,0,16,20,1],
"d6/d64/problem__7_2sol2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,20,1,0],
"d6/d76/k__means__clustering_8c.html":[16,0,12,1],
"d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0":[16,0,12,1,6],
"d6/d76/k__means__clustering_8c.html#a5b4ba704e02672e59cfa35f82e3db28a":[16,0,12,1,4],
"d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,12,1,5],
"d6/d76/k__means__clustering_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,12,1,3],
"d6/d77/md_leetcode__d_i_r_e_c_t_o_r_y.html":[10],
"d6/d7b/jump__search_8c.html":[16,0,16,3],
"d6/d7b/jump__search_8c.html#a8195a86b6d75b9a3939505e8bb50021e":[16,0,16,3,0],
"d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002":[16,0,16,3,3],
"d6/d7b/jump__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,3,2],
"d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603":[16,0,16,3,1],
"d6/d88/problem__16_2sol1_8c.html":[16,0,15,6,0],
"d6/d88/problem__16_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,6,0,0],
"d6/d7b/jump__search_8c.html":[16,0,17,3],
"d6/d7b/jump__search_8c.html#a8195a86b6d75b9a3939505e8bb50021e":[16,0,17,3,0],
"d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002":[16,0,17,3,3],
"d6/d7b/jump__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,3,2],
"d6/d7b/jump__search_8c.html#aff36d719e6fca6aea4377a089580c603":[16,0,17,3,1],
"d6/d88/problem__16_2sol1_8c.html":[16,0,16,6,0],
"d6/d88/problem__16_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,6,0,0],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html":[3],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md18":[3,0],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md19":[3,1],
@ -156,13 +177,13 @@ var NAVTREEINDEX1 =
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md33":[3,1,4,1],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md34":[3,1,4,2],
"d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html#autotoc_md35":[3,1,4,3],
"d6/ded/shell__sort2_8c.html":[16,0,17,11],
"d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,17,11,0],
"d6/ded/shell__sort2_8c.html":[16,0,18,11],
"d6/ded/shell__sort2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,18,11,0],
"d6/df3/graph_8h_source.html":[16,0,3,4,0],
"d7/d0c/hash__sdbm_8c.html":[14,1,3],
"d7/d1f/problem__12_2sol1_8c.html":[16,0,15,2,0],
"d7/d1f/problem__12_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,2,0,1],
"d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222":[16,0,15,2,0,0],
"d7/d1f/problem__12_2sol1_8c.html":[16,0,16,2,0],
"d7/d1f/problem__12_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,2,0,1],
"d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222":[16,0,16,2,0,0],
"d7/d3b/group__hash.html":[14,1],
"d7/d3b/group__hash.html#ga1ac362fa25f7c35d104205985f8e754b":[14,1,7],
"d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0":[14,1,13],
@ -184,28 +205,28 @@ var NAVTREEINDEX1 =
"d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0":[16,0,14,8,2],
"d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40":[16,0,14,8,1],
"d7/d90/rna__transcription_8h_source.html":[16,0,5,3,0],
"d7/d91/problem__15_2sol1_8c.html":[16,0,15,5,0],
"d7/d91/problem__15_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,5,0,0],
"d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6":[16,0,15,5,0,1],
"d7/d91/problem__15_2sol1_8c.html":[16,0,16,5,0],
"d7/d91/problem__15_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,5,0,0],
"d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6":[16,0,16,5,0,1],
"d7/d98/spirograph_8c.html":[16,0,8,0],
"d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3":[16,0,8,0,2],
"d7/d98/spirograph_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,8,0,1],
"d7/d98/spirograph_8c.html#a525335710b53cb064ca56b936120431e":[16,0,8,0,0],
"d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f":[16,0,8,0,3],
"d7/db5/md_exercism__r_e_a_d_m_e.html":[8],
"d7/dd3/problem__3_2sol1_8c.html":[16,0,15,15,0],
"d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305":[16,0,15,15,0,0],
"d7/dd3/problem__3_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,15,0,1],
"d7/dd3/problem__3_2sol1_8c.html":[16,0,16,15,0],
"d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305":[16,0,16,15,0,0],
"d7/dd3/problem__3_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,15,0,1],
"d7/dd8/c__atoi__str__to__integer_8c.html":[16,0,2,0],
"d7/dd8/c__atoi__str__to__integer_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,2,0,1],
"d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be":[16,0,2,0,2],
"d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f":[16,0,2,0,0],
"d7/ddb/problem__23_2sol1_8c.html":[16,0,15,12,0],
"d7/ddb/problem__23_2sol1_8c.html#a1aca7f530f82b27100262adba9e7556b":[16,0,15,12,0,1],
"d7/ddb/problem__23_2sol1_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478":[16,0,15,12,0,3],
"d7/ddb/problem__23_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,12,0,4],
"d7/ddb/problem__23_2sol1_8c.html#a4f128410e6582fe26488e2316cc96e17":[16,0,15,12,0,2],
"d7/ddb/problem__23_2sol1_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf":[16,0,15,12,0,0],
"d7/ddb/problem__23_2sol1_8c.html":[16,0,16,12,0],
"d7/ddb/problem__23_2sol1_8c.html#a1aca7f530f82b27100262adba9e7556b":[16,0,16,12,0,1],
"d7/ddb/problem__23_2sol1_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478":[16,0,16,12,0,3],
"d7/ddb/problem__23_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,12,0,4],
"d7/ddb/problem__23_2sol1_8c.html#a4f128410e6582fe26488e2316cc96e17":[16,0,16,12,0,2],
"d7/ddb/problem__23_2sol1_8c.html#ac5d600bf3077f4188afc4c5cd2c40eaf":[16,0,16,12,0,0],
"d7/de0/stack_8h_source.html":[16,0,3,9,1],
"d7/dfd/structdual__quat__.html":[14,0,3,0],
"d7/dfd/structdual__quat__.html#a1b05fbc4135e4f9b731423f26527543d":[14,0,3,0,0],
@ -217,37 +238,16 @@ var NAVTREEINDEX1 =
"d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,2,2,2],
"d8/d30/decimal__to__binary__recursion_8c.html#acbbe6358ec95b3201865a72b2ac522c8":[16,0,2,2,0],
"d8/d30/decimal__to__binary__recursion_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,2,2,1],
"d8/d32/problem__25_2sol1_8c.html":[16,0,15,13,0],
"d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61":[16,0,15,13,0,0],
"d8/d32/problem__25_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,15,13,0,3],
"d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783":[16,0,15,13,0,2],
"d8/d32/problem__25_2sol1_8c.html#abe5bc1f170b2108a19d0a16d30bd3235":[16,0,15,13,0,4],
"d8/d32/problem__25_2sol1_8c.html#af9729befaffc1aab9ac9fedc4706e66c":[16,0,15,13,0,1],
"d8/d32/problem__25_2sol1_8c.html":[16,0,16,13,0],
"d8/d32/problem__25_2sol1_8c.html#a001791a21d538b8b9176287ae60d9b61":[16,0,16,13,0,0],
"d8/d32/problem__25_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,16,13,0,3],
"d8/d32/problem__25_2sol1_8c.html#a2b90df6bfbf0d18cd9a19c1a71453783":[16,0,16,13,0,2],
"d8/d32/problem__25_2sol1_8c.html#abe5bc1f170b2108a19d0a16d30bd3235":[16,0,16,13,0,4],
"d8/d32/problem__25_2sol1_8c.html#af9729befaffc1aab9ac9fedc4706e66c":[16,0,16,13,0,1],
"d8/d38/queue_8h_source.html":[16,0,3,4,1],
"d8/d71/group__k__means.html":[14,2,1],
"d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9":[14,2,1,3],
"d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7":[14,2,1,2],
"d8/d71/group__k__means.html#gaf6259432561e794dea0e060f482d15e2":[14,2,1,4],
"d8/d75/fibonacci__formula_8c.html":[16,0,13,5],
"d8/d75/fibonacci__formula_8c.html#a4d369ae048e0ccc7f515a243533cd946":[16,0,13,5,0],
"d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,13,5,2],
"d8/d75/fibonacci__formula_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,13,5,1],
"d8/d7a/structtnode.html":[15,0,39],
"d8/d7c/dict_8h_source.html":[16,0,3,2,0],
"d8/d81/md_project_euler__r_e_a_d_m_e.html":[12],
"d8/da2/dynamic__array_8h_source.html":[16,0,3,3,0],
"d8/db8/structkohonen__array__3d.html":[14,2,2,0],
"d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf":[14,2,2,0,3],
"d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377":[14,2,2,0,1],
"d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d":[14,2,2,0,2],
"d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59":[14,2,2,0,0],
"d8/dca/udp__server_8c.html":[16,0,1,9],
"d8/dca/udp__server_8c.html#a3e937c42922f7601edb17b747602c471":[16,0,1,9,0],
"d8/dca/udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2":[16,0,1,9,1],
"d8/dca/udp__server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,1,9,2],
"d8/de0/problem__9_2sol2_8c.html":[16,0,15,22,1],
"d8/de0/problem__9_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,22,1,0],
"d9/d41/md_data_structures_array__r_e_a_d_m_e.html":[4],
"d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md37":[4,0],
"d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md38":[4,1]
"d8/d75/fibonacci__formula_8c.html":[16,0,13,5]
};

View File

@ -1,13 +1,34 @@
var NAVTREEINDEX2 =
{
"d8/d75/fibonacci__formula_8c.html#a4d369ae048e0ccc7f515a243533cd946":[16,0,13,5,0],
"d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,13,5,2],
"d8/d75/fibonacci__formula_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,13,5,1],
"d8/d7a/structtnode.html":[15,0,39],
"d8/d7c/dict_8h_source.html":[16,0,3,2,0],
"d8/d81/md_project_euler__r_e_a_d_m_e.html":[12],
"d8/da2/dynamic__array_8h_source.html":[16,0,3,3,0],
"d8/db8/structkohonen__array__3d.html":[14,2,2,0],
"d8/db8/structkohonen__array__3d.html#a160f14830bdfbbf9f422f382ee754dbf":[14,2,2,0,3],
"d8/db8/structkohonen__array__3d.html#a16720581653fa9a34d1029e7229a7377":[14,2,2,0,1],
"d8/db8/structkohonen__array__3d.html#a888d7e007b38c91c7933e12a9566af1d":[14,2,2,0,2],
"d8/db8/structkohonen__array__3d.html#ad546baa2e81c6196d5f1dc0fe2e5bd59":[14,2,2,0,0],
"d8/dca/udp__server_8c.html":[16,0,1,9],
"d8/dca/udp__server_8c.html#a3e937c42922f7601edb17b747602c471":[16,0,1,9,0],
"d8/dca/udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2":[16,0,1,9,1],
"d8/dca/udp__server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,1,9,2],
"d8/de0/problem__9_2sol2_8c.html":[16,0,16,22,1],
"d8/de0/problem__9_2sol2_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,22,1,0],
"d9/d41/md_data_structures_array__r_e_a_d_m_e.html":[4],
"d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md37":[4,0],
"d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md38":[4,1],
"d9/d41/md_data_structures_array__r_e_a_d_m_e.html#autotoc_md39":[4,2],
"d9/d66/group__machine__learning.html":[14,2],
"d9/d8b/structmat__3x3__.html":[14,0,1,0],
"d9/d8b/structmat__3x3__.html#a490bb6be52ea95b333b55b236af41563":[14,0,1,0,2],
"d9/d8b/structmat__3x3__.html#a8d7ae8fbcc408e3c30e9d64bbd28feaf":[14,0,1,0,1],
"d9/d8b/structmat__3x3__.html#ac74f33a2e1ad1f6db74d94807cf1f64e":[14,0,1,0,0],
"d9/da7/problem__10_2sol2_8c.html":[16,0,15,1,1],
"d9/da7/problem__10_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,15,1,1,0],
"d9/da7/problem__10_2sol2_8c.html":[16,0,16,1,1],
"d9/da7/problem__10_2sol2_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,16,1,1,0],
"d9/dc9/hash__crc32_8c.html":[14,1,1],
"d9/dcc/prim_8c.html":[16,0,9,0],
"d9/dcc/prim_8c.html#a0bea087eb586c437cf0a667f794c8853":[16,0,9,0,3],
@ -66,22 +87,22 @@ var NAVTREEINDEX2 =
"da/d2a/group__adaline.html#gac70b578aee679005fd336073969c3d94":[14,2,0,7],
"da/d2a/group__adaline.html#gacd88962c5f6341e43cbc69b4a7d3485b":[14,2,0,9],
"da/d2a/group__adaline.html#gadb1a7acb555ad62daaf3806bf2fed036":[14,2,0,6],
"da/d35/problem__1_2sol1_8c.html":[16,0,15,0,0],
"da/d35/problem__1_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,0,0,0],
"da/d35/problem__1_2sol1_8c.html":[16,0,16,0,0],
"da/d35/problem__1_2sol1_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,0,0,0],
"da/d38/durand__kerner__roots_8c.html":[16,0,14,0],
"da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52":[16,0,14,0,1],
"da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c":[16,0,14,0,4],
"da/d38/durand__kerner__roots_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,14,0,3],
"da/d38/durand__kerner__roots_8c.html#a46197e91f478e99a2229562aaaac311e":[16,0,14,0,2],
"da/d38/durand__kerner__roots_8c.html#af270a96662132d0385cb6b4637c5a689":[16,0,14,0,0],
"da/d56/problem__1_2sol3_8c.html":[16,0,15,0,2],
"da/d56/problem__1_2sol3_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,15,0,2,0],
"da/d6c/exponential__search_8c.html":[16,0,16,1],
"da/d6c/exponential__search_8c.html#a82d4de0907b9601a376febf50955bacd":[16,0,16,1,2],
"da/d6c/exponential__search_8c.html#aa5e9be47d76a4e1865914bcb7a2a7479":[16,0,16,1,0],
"da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,16,1,4],
"da/d6c/exponential__search_8c.html#aae97ef76c065e91c188f1f8c8076869a":[16,0,16,1,1],
"da/d6c/exponential__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,1,3],
"da/d56/problem__1_2sol3_8c.html":[16,0,16,0,2],
"da/d56/problem__1_2sol3_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,16,0,2,0],
"da/d6c/exponential__search_8c.html":[16,0,17,1],
"da/d6c/exponential__search_8c.html#a82d4de0907b9601a376febf50955bacd":[16,0,17,1,2],
"da/d6c/exponential__search_8c.html#aa5e9be47d76a4e1865914bcb7a2a7479":[16,0,17,1,0],
"da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,1,4],
"da/d6c/exponential__search_8c.html#aae97ef76c065e91c188f1f8c8076869a":[16,0,17,1,1],
"da/d6c/exponential__search_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,1,3],
"da/d90/stack__linked__list_2stack_8h_source.html":[16,0,3,9,0,0],
"da/d93/prime_8c.html":[16,0,13,9],
"da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f":[16,0,13,9,0],
@ -113,11 +134,11 @@ var NAVTREEINDEX2 =
"da/de6/udp__client_8c.html#a3e937c42922f7601edb17b747602c471":[16,0,1,8,0],
"da/de6/udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2":[16,0,1,8,1],
"da/de6/udp__client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,1,8,2],
"db/d01/problem__13_2sol1_8c.html":[16,0,15,3,0],
"db/d01/problem__13_2sol1_8c.html#a248adc917818cc6666d8bc679a660319":[16,0,15,3,0,3],
"db/d01/problem__13_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,3,0,2],
"db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8":[16,0,15,3,0,1],
"db/d01/problem__13_2sol1_8c.html#ad51742ca5a5c99e860bdf30299163bf2":[16,0,15,3,0,0],
"db/d01/problem__13_2sol1_8c.html":[16,0,16,3,0],
"db/d01/problem__13_2sol1_8c.html#a248adc917818cc6666d8bc679a660319":[16,0,16,3,0,3],
"db/d01/problem__13_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,3,0,2],
"db/d01/problem__13_2sol1_8c.html#ac260f58785fb20eb09bb35385a7d47f8":[16,0,16,3,0,1],
"db/d01/problem__13_2sol1_8c.html#ad51742ca5a5c99e860bdf30299163bf2":[16,0,16,3,0,0],
"db/d0c/infix__to__postfix_8c.html":[16,0,2,4],
"db/d0c/infix__to__postfix_8c.html#a613462735d30cae1b85b606ecab30554":[16,0,2,4,7],
"db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1":[16,0,2,4,1],
@ -126,11 +147,11 @@ var NAVTREEINDEX2 =
"db/d0c/infix__to__postfix_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,2,4,5],
"db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021":[16,0,2,4,3],
"db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b":[16,0,2,4,4],
"db/d80/problem__20_2sol1_8c.html":[16,0,15,9,0],
"db/d80/problem__20_2sol1_8c.html#a0dd8af03e6cc8187e996db564ff90960":[16,0,15,9,0,2],
"db/d80/problem__20_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,9,0,3],
"db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1":[16,0,15,9,0,4],
"db/d80/problem__20_2sol1_8c.html#a62cbbd106aad52daadb9403a07d0da32":[16,0,15,9,0,1],
"db/d80/problem__20_2sol1_8c.html":[16,0,16,9,0],
"db/d80/problem__20_2sol1_8c.html#a0dd8af03e6cc8187e996db564ff90960":[16,0,16,9,0,2],
"db/d80/problem__20_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,9,0,3],
"db/d80/problem__20_2sol1_8c.html#a54a02c4b963fdb16f24959e0137763f1":[16,0,16,9,0,4],
"db/d80/problem__20_2sol1_8c.html#a62cbbd106aad52daadb9403a07d0da32":[16,0,16,9,0,1],
"db/d84/malloc__dbg_8c.html":[16,0,4,0],
"db/d84/malloc__dbg_8c.html#a062aa89cafd39a97971a2eb22653ff2a":[16,0,4,0,2],
"db/d84/malloc__dbg_8c.html#a2a47e4c38db8c00b80248e5535adf797":[16,0,4,0,8],
@ -153,9 +174,9 @@ var NAVTREEINDEX2 =
"db/dd5/prime__seive_8c.html":[16,0,13,10],
"db/dd5/prime__seive_8c.html#ac1215a37edfa07d37edf6ec65f2235c7":[16,0,13,10,4],
"db/ddb/hello__world_8h_source.html":[16,0,5,1,0],
"db/ddf/insertion__sort_8c.html":[16,0,17,5],
"db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb":[16,0,17,5,0],
"db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,5,1],
"db/ddf/insertion__sort_8c.html":[16,0,18,5],
"db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb":[16,0,18,5,0],
"db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,18,5,1],
"db/de2/naval__battle_8c.html":[16,0,6,0],
"db/de2/naval__battle_8c.html#a23e98ed36ca08c1b4bb86c86f48f6e70":[16,0,6,0,9],
"db/de2/naval__battle_8c.html#a2d65de2c86c7015d7ca400dfca0f25dc":[16,0,6,0,5],
@ -177,23 +198,23 @@ var NAVTREEINDEX2 =
"dc/d2e/lu__decompose_8c.html#a0789beb8d3396582d77b7aedf5e5554a":[16,0,14,1,0],
"dc/d2e/lu__decompose_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,14,1,2],
"dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4":[16,0,14,1,1],
"dc/d32/problem__5_2sol1_8c.html":[16,0,15,18,0],
"dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3":[16,0,15,18,0,0],
"dc/d32/problem__5_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,18,0,1],
"dc/d39/selection__sort__recursive_8c.html":[16,0,17,10],
"dc/d39/selection__sort__recursive_8c.html#a3f04d850b94a34dcaaed0e7bc7475241":[16,0,17,10,2],
"dc/d39/selection__sort__recursive_8c.html#aa2bc8bdd2e8ce289a6b8ef528fd1a534":[16,0,17,10,0],
"dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,10,4],
"dc/d39/selection__sort__recursive_8c.html#aaf68497ab808b560dbf109da6435905a":[16,0,17,10,3],
"dc/d39/selection__sort__recursive_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,10,1],
"dc/d32/problem__5_2sol1_8c.html":[16,0,16,18,0],
"dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3":[16,0,16,18,0,0],
"dc/d32/problem__5_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,18,0,1],
"dc/d39/selection__sort__recursive_8c.html":[16,0,18,10],
"dc/d39/selection__sort__recursive_8c.html#a3f04d850b94a34dcaaed0e7bc7475241":[16,0,18,10,2],
"dc/d39/selection__sort__recursive_8c.html#aa2bc8bdd2e8ce289a6b8ef528fd1a534":[16,0,18,10,0],
"dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,18,10,4],
"dc/d39/selection__sort__recursive_8c.html#aaf68497ab808b560dbf109da6435905a":[16,0,18,10,3],
"dc/d39/selection__sort__recursive_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,18,10,1],
"dc/d47/realtime__stats_8c.html":[16,0,14,9],
"dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96":[16,0,14,9,2],
"dc/d47/realtime__stats_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,14,9,0],
"dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628":[16,0,14,9,1],
"dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd":[16,0,14,9,3],
"dc/d63/problem__8_2sol1_8c.html":[16,0,15,21,0],
"dc/d63/problem__8_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,15,21,0,1],
"dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd":[16,0,15,21,0,0],
"dc/d63/problem__8_2sol1_8c.html":[16,0,16,21,0],
"dc/d63/problem__8_2sol1_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,16,21,0,1],
"dc/d63/problem__8_2sol1_8c.html#a9ffc8845f17b01a353767a40a3adf7bd":[16,0,16,21,0,0],
"dc/d64/md__coding_guidelines.html":[2],
"dc/d64/md__coding_guidelines.html#autotoc_md14":[2,0],
"dc/d64/md__coding_guidelines.html#autotoc_md16":[2,1],
@ -228,26 +249,5 @@ var NAVTREEINDEX2 =
"dd/d08/newton__raphson__root_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,14,2,3],
"dd/d08/newton__raphson__root_8c.html#a72f87d423a488946b319627a454d3925":[16,0,14,2,2],
"dd/d08/newton__raphson__root_8c.html#ae713a1fd0c275fbec7edf263ac2c0337":[16,0,14,2,1],
"dd/d08/newton__raphson__root_8c.html#af270a96662132d0385cb6b4637c5a689":[16,0,14,2,0],
"dd/d10/struct_stack.html":[15,0,34],
"dd/d10/struct_stack.html#a856ca6f4a9ffde43f0cb3b43cb4d044d":[15,0,34,0],
"dd/d10/struct_stack.html#aa16cf0b36f9735ed00bde97a5013adaa":[15,0,34,1],
"dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9":[15,0,34,3],
"dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a":[15,0,34,2],
"dd/d11/test__malloc__dbg_8c.html":[16,0,4,3],
"dd/d11/test__malloc__dbg_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,4,3,0],
"dd/d29/doubly__linked__list_8c.html":[16,0,3,6,0],
"dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918":[16,0,3,6,0,5],
"dd/d29/doubly__linked__list_8c.html#a1fadec32fc369a8dcfbcd766e166efa0":[16,0,3,6,0,7],
"dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f":[16,0,3,6,0,2],
"dd/d29/doubly__linked__list_8c.html#aa49167a68597f162e699b846fac0d446":[16,0,3,6,0,3],
"dd/d29/doubly__linked__list_8c.html#aa89b8bc105d9a09d4e7c06e8b34078a7":[16,0,3,6,0,1],
"dd/d29/doubly__linked__list_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,3,6,0,6],
"dd/d29/doubly__linked__list_8c.html#aedd04074dbc6af0de89051f97209311b":[16,0,3,6,0,8],
"dd/d29/doubly__linked__list_8c.html#afa2b50f4716fc3b42221a72e676e1422":[16,0,3,6,0,4],
"dd/d53/int__to__string_8c.html":[16,0,2,6],
"dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,2,6,2],
"dd/d53/int__to__string_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,2,6,1],
"dd/d53/int__to__string_8c.html#aeb4be1a1db1c5fea06e9d8b87e6c3973":[16,0,2,6,0],
"dd/d79/remote__command__exec__udp__server_8c.html":[16,0,1,2]
"dd/d08/newton__raphson__root_8c.html#af270a96662132d0385cb6b4637c5a689":[16,0,14,2,0]
};

View File

@ -1,16 +1,37 @@
var NAVTREEINDEX3 =
{
"dd/d10/struct_stack.html":[15,0,34],
"dd/d10/struct_stack.html#a856ca6f4a9ffde43f0cb3b43cb4d044d":[15,0,34,0],
"dd/d10/struct_stack.html#aa16cf0b36f9735ed00bde97a5013adaa":[15,0,34,1],
"dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9":[15,0,34,3],
"dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a":[15,0,34,2],
"dd/d11/test__malloc__dbg_8c.html":[16,0,4,3],
"dd/d11/test__malloc__dbg_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,4,3,0],
"dd/d29/doubly__linked__list_8c.html":[16,0,3,6,0],
"dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918":[16,0,3,6,0,5],
"dd/d29/doubly__linked__list_8c.html#a1fadec32fc369a8dcfbcd766e166efa0":[16,0,3,6,0,7],
"dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f":[16,0,3,6,0,2],
"dd/d29/doubly__linked__list_8c.html#aa49167a68597f162e699b846fac0d446":[16,0,3,6,0,3],
"dd/d29/doubly__linked__list_8c.html#aa89b8bc105d9a09d4e7c06e8b34078a7":[16,0,3,6,0,1],
"dd/d29/doubly__linked__list_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,3,6,0,6],
"dd/d29/doubly__linked__list_8c.html#aedd04074dbc6af0de89051f97209311b":[16,0,3,6,0,8],
"dd/d29/doubly__linked__list_8c.html#afa2b50f4716fc3b42221a72e676e1422":[16,0,3,6,0,4],
"dd/d53/int__to__string_8c.html":[16,0,2,6],
"dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,2,6,2],
"dd/d53/int__to__string_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,2,6,1],
"dd/d53/int__to__string_8c.html#aeb4be1a1db1c5fea06e9d8b87e6c3973":[16,0,2,6,0],
"dd/d79/remote__command__exec__udp__server_8c.html":[16,0,1,2],
"dd/d79/remote__command__exec__udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2":[16,0,1,2,0],
"dd/d79/remote__command__exec__udp__server_8c.html#a7e15c8e2885871839fc2b820dfbdb4ce":[16,0,1,2,1],
"dd/d79/remote__command__exec__udp__server_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,1,2,2],
"dd/d7a/group__matrix.html":[14,0,1],
"dd/d7a/group__matrix.html#ga9f844010cb96591fa94c9d533a500ab7":[14,0,1,1],
"dd/d8b/problem__22_2sol1_8c.html":[16,0,15,11,0],
"dd/d8b/problem__22_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,11,0,3],
"dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63":[16,0,15,11,0,4],
"dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38":[16,0,15,11,0,1],
"dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d":[16,0,15,11,0,2],
"dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a":[16,0,15,11,0,0],
"dd/d8b/problem__22_2sol1_8c.html":[16,0,16,11,0],
"dd/d8b/problem__22_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,11,0,3],
"dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63":[16,0,16,11,0,4],
"dd/d8b/problem__22_2sol1_8c.html#a6cb9b08aacb61416795ee78bfceacd38":[16,0,16,11,0,1],
"dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d":[16,0,16,11,0,2],
"dd/d8b/problem__22_2sol1_8c.html#afd709f201d7643c3909621f620ea648a":[16,0,16,11,0,0],
"dd/d8c/adaline__learning_8c.html":[16,0,12,0],
"dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6":[16,0,12,0,11],
"dd/d8c/adaline__learning_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,12,0,8],
@ -24,19 +45,19 @@ var NAVTREEINDEX3 =
"dd/d93/client_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,1,0,4],
"dd/d95/word__count_8h_source.html":[16,0,5,4,0],
"dd/da2/structbuffer.html":[15,0,6],
"dd/de4/bubble__sort_8c.html":[16,0,17,1],
"dd/de4/bubble__sort_8c.html#aa8989f6c9bfd1f040854fa18b180114f":[16,0,17,1,0],
"dd/de4/bubble__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[16,0,17,1,2],
"dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3":[16,0,17,1,3],
"dd/de4/bubble__sort_8c.html#ad7ed8cc4603f500d610054680d28b971":[16,0,17,1,1],
"dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002":[16,0,17,1,4],
"dd/df0/problem__19_2sol1_8c.html":[16,0,15,7,0],
"dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,7,0,2],
"dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e":[16,0,15,7,0,1],
"dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75":[16,0,15,7,0,0],
"de/d0c/insertion__sort__recursive_8c.html":[16,0,17,6],
"de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,6,2],
"de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c":[16,0,17,6,0],
"dd/de4/bubble__sort_8c.html":[16,0,18,1],
"dd/de4/bubble__sort_8c.html#aa8989f6c9bfd1f040854fa18b180114f":[16,0,18,1,0],
"dd/de4/bubble__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[16,0,18,1,2],
"dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3":[16,0,18,1,3],
"dd/de4/bubble__sort_8c.html#ad7ed8cc4603f500d610054680d28b971":[16,0,18,1,1],
"dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002":[16,0,18,1,4],
"dd/df0/problem__19_2sol1_8c.html":[16,0,16,7,0],
"dd/df0/problem__19_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,7,0,2],
"dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e":[16,0,16,7,0,1],
"dd/df0/problem__19_2sol1_8c.html#ab7f9ad087f124b8e0615aa535b4c8a75":[16,0,16,7,0,0],
"de/d0c/insertion__sort__recursive_8c.html":[16,0,18,6],
"de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,18,6,2],
"de/d0c/insertion__sort__recursive_8c.html#ac0f2228420376f4db7e1274f2b41667c":[16,0,18,6,0],
"de/d20/md_data_structures_dictionary__r_e_a_d_m_e.html":[5],
"de/d58/structquaternion__.html":[14,0,2,0],
"de/d58/structquaternion__.html#a37819eb7d76c65c37a9c2a63f01f65b2":[14,0,2,0,1],
@ -62,30 +83,30 @@ var NAVTREEINDEX3 =
"de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,13,11,2],
"de/dcf/rot13_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,13,11,0],
"de/dcf/rot13_8c.html#aff3bdb59af9eabba91420f23eb01718c":[16,0,13,11,1],
"de/dff/heap__sort__2_8c.html":[16,0,17,4],
"de/dff/heap__sort__2_8c.html#a00cd944b33a5fe5972111ded9b49793c":[16,0,17,4,0],
"de/dff/heap__sort__2_8c.html#a619753b978f962aa2337e1fdb4e59e33":[16,0,17,4,1],
"de/dff/heap__sort__2_8c.html#a672a47d865e7fa18f1ff23001ef4a485":[16,0,17,4,2],
"de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,4,5],
"de/dff/heap__sort__2_8c.html#aaf68497ab808b560dbf109da6435905a":[16,0,17,4,4],
"de/dff/heap__sort__2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,17,4,3],
"de/dff/heap__sort__2_8c.html":[16,0,18,4],
"de/dff/heap__sort__2_8c.html#a00cd944b33a5fe5972111ded9b49793c":[16,0,18,4,0],
"de/dff/heap__sort__2_8c.html#a619753b978f962aa2337e1fdb4e59e33":[16,0,18,4,1],
"de/dff/heap__sort__2_8c.html#a672a47d865e7fa18f1ff23001ef4a485":[16,0,18,4,2],
"de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,18,4,5],
"de/dff/heap__sort__2_8c.html#aaf68497ab808b560dbf109da6435905a":[16,0,18,4,4],
"de/dff/heap__sort__2_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,18,4,3],
"df/d16/palindrome_8c.html":[16,0,13,6],
"df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba":[16,0,13,6,0],
"df/d16/palindrome_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,13,6,1],
"df/d1a/problem__21_2sol1_8c.html":[16,0,15,10,0],
"df/d1a/problem__21_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,15,10,0,0],
"df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93":[16,0,15,10,0,1],
"df/d1a/problem__21_2sol1_8c.html":[16,0,16,10,0],
"df/d1a/problem__21_2sol1_8c.html#a3c04138a5bfe5d72780bb7e82a18e627":[16,0,16,10,0,0],
"df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93":[16,0,16,10,0,1],
"df/d27/alaw_8c.html":[16,0,0,0],
"df/d27/alaw_8c.html#a05b49c662c073f89e86804f7856622a0":[16,0,0,0,0],
"df/d27/alaw_8c.html#a093ac72124e3c2268d1150676e63175d":[16,0,0,0,1],
"df/d27/alaw_8c.html#a0ddf1224851353fc92bfbff6f499fa97":[16,0,0,0,3],
"df/d27/alaw_8c.html#a751d8e2c1975706e4d876316518c54c4":[16,0,0,0,2],
"df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5":[16,0,0,0,4],
"df/d3b/binary__search_8c.html":[16,0,16,0],
"df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582":[16,0,16,0,0],
"df/d3b/binary__search_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,0,2],
"df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032":[16,0,16,0,1],
"df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002":[16,0,16,0,3],
"df/d3b/binary__search_8c.html":[16,0,17,0],
"df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582":[16,0,17,0,0],
"df/d3b/binary__search_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,17,0,2],
"df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032":[16,0,17,0,1],
"df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002":[16,0,17,0,3],
"df/d3c/threaded__binary__trees_8c.html":[16,0,3,1,2],
"df/d3c/threaded__binary__trees_8c.html#a284d683f74b6c884e79ba00d3d1c3317":[16,0,3,1,2,3],
"df/d3c/threaded__binary__trees_8c.html#a306d567466f22e1e927aaed97d8bb58c":[16,0,3,1,2,9],
@ -104,22 +125,22 @@ var NAVTREEINDEX3 =
"df/d43/postfix__evaluation_8c.html#ae66f6b31b5ad750f1fe042a706a4e3d4":[16,0,13,8,2],
"df/d43/postfix__evaluation_8c.html#af395c540f7e70a8d82d055a0aa42bbef":[16,0,13,8,4],
"df/d58/md_leetcode__r_e_a_d_m_e.html":[11],
"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md69":[11,0],
"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md70":[11,1],
"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md71":[11,1,0],
"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md72":[11,2],
"df/d83/selection__sort_8c.html":[16,0,17,9],
"df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,17,9,3],
"df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[16,0,17,9,0],
"df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3":[16,0,17,9,2],
"df/d83/selection__sort_8c.html#aeafe7419cfceaeccaf49f22842d9a617":[16,0,17,9,1],
"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md70":[11,0],
"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md71":[11,1],
"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md72":[11,1,0],
"df/d58/md_leetcode__r_e_a_d_m_e.html#autotoc_md73":[11,2],
"df/d83/selection__sort_8c.html":[16,0,18,9],
"df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d":[16,0,18,9,3],
"df/d83/selection__sort_8c.html#ac0f2228420376f4db7e1274f2b41667c":[16,0,18,9,0],
"df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3":[16,0,18,9,2],
"df/d83/selection__sort_8c.html#aeafe7419cfceaeccaf49f22842d9a617":[16,0,18,9,1],
"df/d86/structterm.html":[15,0,38],
"df/d86/structterm.html#a057f161d279d856d11786aa96fc87f74":[15,0,38,2],
"df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b":[15,0,38,0],
"df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a":[15,0,38,1],
"df/d98/quaternions_8c.html":[16,0,7,1],
"df/da5/problem__9_2sol1_8c.html":[16,0,15,22,0],
"df/da5/problem__9_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,15,22,0,0],
"df/da5/problem__9_2sol1_8c.html":[16,0,16,22,0],
"df/da5/problem__9_2sol1_8c.html#a840291bc02cba5474a4cb46a9b9566fe":[16,0,16,22,0,0],
"df/db3/struct_l.html":[15,0,20],
"df/dc6/acronym_8h_source.html":[16,0,5,0,0],
"df/ddb/structword__count__word.html":[15,0,43],
@ -144,67 +165,68 @@ var NAVTREEINDEX3 =
"df/dfa/vector_8c.html#af2f92e8cc55e764980bc0573ab5cd06f":[16,0,3,10,8],
"dir_03902f230b9e9b7c999f936617a23997.html":[16,0,11],
"dir_0472225043064b54f3dfff9011a9fae0.html":[16,0,3,9,0],
"dir_079e1f799fb08a8a0b98cb030ab15687.html":[16,0,15,13],
"dir_0bc3e2a5baf077fa21dadc079776fcac.html":[16,0,15,7],
"dir_167af11096b7752ff31b3d4bec489317.html":[16,0,15,19],
"dir_16b947d8e9a05fe119d0675493324331.html":[16,0,15,1],
"dir_16e00c78ef36d1842d0d8a4afc46b852.html":[16,0,15,14],
"dir_1833eb69ceee7a265ffba4c38c8243d2.html":[16,0,15,16],
"dir_18cba55772148686552805a354a79093.html":[16,0,15,6],
"dir_079e1f799fb08a8a0b98cb030ab15687.html":[16,0,16,13],
"dir_0bc3e2a5baf077fa21dadc079776fcac.html":[16,0,16,7],
"dir_167af11096b7752ff31b3d4bec489317.html":[16,0,16,19],
"dir_16b947d8e9a05fe119d0675493324331.html":[16,0,16,1],
"dir_16e00c78ef36d1842d0d8a4afc46b852.html":[16,0,16,14],
"dir_1833eb69ceee7a265ffba4c38c8243d2.html":[16,0,16,16],
"dir_18cba55772148686552805a354a79093.html":[16,0,16,6],
"dir_2176ba3565d8b1fe2a106d18679cc7bf.html":[16,0,3,9],
"dir_261dd1200fad5b2fe1eca9af8320656e.html":[16,0,3,6],
"dir_2abe2c0880d3fb0dba0f784bee3fc9e0.html":[16,0,15,11],
"dir_2b14f32f14b51065d3a322bea21da3c0.html":[16,0,15,5],
"dir_2abe2c0880d3fb0dba0f784bee3fc9e0.html":[16,0,16,11],
"dir_2b14f32f14b51065d3a322bea21da3c0.html":[16,0,16,5],
"dir_2e746e9d06bf2d8ff842208bcc6ebcfc.html":[16,0,3],
"dir_2f070f19f76dfadabbc24fe483d7e98d.html":[16,0,15,17],
"dir_2f070f19f76dfadabbc24fe483d7e98d.html":[16,0,16,17],
"dir_2fede762f95c9c526850a639b984c56b.html":[16,0,3,4],
"dir_3343723ae086de42ee4ca9774da3a13f.html":[16,0,12],
"dir_4500de955d1eddb82f69331d96e39ed9.html":[16,0,5,1],
"dir_475f56e0a4ef6254f5610544d8d68aa3.html":[16,0,5,4],
"dir_48bf5503321d91c557399989fed5dabd.html":[16,0,5],
"dir_4991c92e00761dd3d764efa2906b4318.html":[16,0,15,9],
"dir_4a15c8553efb9e59e3f1091cc0d3a27d.html":[16,0,15,21],
"dir_4991c92e00761dd3d764efa2906b4318.html":[16,0,16,9],
"dir_4a15c8553efb9e59e3f1091cc0d3a27d.html":[16,0,16,21],
"dir_4b6f782e158b0b98da980a0e11a23a15.html":[16,0,6],
"dir_4bae997a2671812c2140d5abfb6305a4.html":[16,0,15,20],
"dir_607f15d36c772334f988bb9ef82d102c.html":[16,0,15,18],
"dir_4bae997a2671812c2140d5abfb6305a4.html":[16,0,16,20],
"dir_607f15d36c772334f988bb9ef82d102c.html":[16,0,16,18],
"dir_614f310c248f2b9541b559085cafcb40.html":[16,0,11,0],
"dir_63185e90e67935ef3eb5903a044c89e2.html":[16,0,15],
"dir_72aaf47615111200018c039a56ef48be.html":[16,0,10],
"dir_7445e5a68245b48f3c03982b6d501815.html":[16,0,3,2],
"dir_76784a7b04633629b9ecb5543b9ad889.html":[16,0,5,2],
"dir_81f43aa0067826ea5befe80cd7aefcc5.html":[16,0,5,3],
"dir_8c6743d405e8ed13cc39f42e382307fd.html":[16,0,15,0],
"dir_8c6743d405e8ed13cc39f42e382307fd.html":[16,0,16,0],
"dir_955029374964e51cf770754b424e7d39.html":[16,0,3,5],
"dir_9babc524d57e25f3d9f4179cabc3599e.html":[16,0,2],
"dir_9c6faab82c22511b50177aa2e38e2780.html":[16,0,14],
"dir_a4300992e825aa9b9238bf43160a241e.html":[16,0,9],
"dir_a52f4d3d586a58b02f3a4ddf0a992157.html":[16,0,13],
"dir_a5f32cf82ad289a7dac212f63f40f55b.html":[16,0,0],
"dir_aba97bf327db94061e830e9bc18e925d.html":[16,0,15,4],
"dir_aba97bf327db94061e830e9bc18e925d.html":[16,0,16,4],
"dir_abf1a26ece768c4076e73592705ae077.html":[16,0,4],
"dir_b2dbfa46230fd9f775c32c1836ed3764.html":[16,0,15,15],
"dir_b3d331eabd4234f247030c297aaf021c.html":[16,0,15],
"dir_b2dbfa46230fd9f775c32c1836ed3764.html":[16,0,16,15],
"dir_b3d331eabd4234f247030c297aaf021c.html":[16,0,16],
"dir_b6018f60d424a2ef7e4c942ac681e38b.html":[16,0,3,7],
"dir_bb1b521853a9c46347182a9d10420771.html":[16,0,17],
"dir_bb1b521853a9c46347182a9d10420771.html":[16,0,18],
"dir_bd4a7dd282074645ef41b1ea31ac813a.html":[16,0,3,3],
"dir_c7ef0fcb2f2095a74f0a3a1634dfc798.html":[16,0,3,0],
"dir_d20ad0b8de644c123692ba5582cc7a7b.html":[16,0,1],
"dir_d4c35186c199e728d69dee6bf5b2473c.html":[16,0,15,22],
"dir_d9112ab06cf4d4e5a25d385a268d1949.html":[16,0,15,2],
"dir_d9e100c82ada2163abea49688a71e81c.html":[16,0,15,10],
"dir_da574daf9ce9c05b45556bdc871ed1e3.html":[16,0,16],
"dir_d4c35186c199e728d69dee6bf5b2473c.html":[16,0,16,22],
"dir_d9112ab06cf4d4e5a25d385a268d1949.html":[16,0,16,2],
"dir_d9e100c82ada2163abea49688a71e81c.html":[16,0,16,10],
"dir_da574daf9ce9c05b45556bdc871ed1e3.html":[16,0,17],
"dir_e3380d2178455503f266746fb14246a5.html":[16,0,7],
"dir_e39df94f82619fa5256f1786519937be.html":[16,0,3,1],
"dir_e79632891301b850df87e9c0030293fa.html":[16,0,8],
"dir_eeeea13e3a5e5edad3499183767ce312.html":[16,0,15,8],
"dir_f75ccd45e00436eafed446b9b2682984.html":[16,0,15,12],
"dir_f7d3c03fcac84aef1b0c66cc497ed1ea.html":[16,0,15,3],
"dir_eeeea13e3a5e5edad3499183767ce312.html":[16,0,16,8],
"dir_f75ccd45e00436eafed446b9b2682984.html":[16,0,16,12],
"dir_f7d3c03fcac84aef1b0c66cc497ed1ea.html":[16,0,16,3],
"dir_fb09f588f9daea69f78b63a0310e98cc.html":[16,0,3,8],
"dir_fe5d69ed7d90cb356556070c2a2e5478.html":[16,0,5,0],
"files.html":[16,0],
"functions.html":[15,2,0],
"functions_vars.html":[15,2,1],
"globals.html":[16,1,0,0],
"globals.html":[16,1,0],
"globals.html":[16,1,0,0],
"globals_a.html":[16,1,0,1],
"globals_b.html":[16,1,0,2],
"globals_c.html":[16,1,0,3],
@ -227,27 +249,5 @@ var NAVTREEINDEX3 =
"globals_func_k.html":[16,1,1,11],
"globals_func_l.html":[16,1,1,12],
"globals_func_m.html":[16,1,1,13],
"globals_func_n.html":[16,1,1,14],
"globals_func_o.html":[16,1,1,15],
"globals_func_p.html":[16,1,1,16],
"globals_func_q.html":[16,1,1,17],
"globals_func_r.html":[16,1,1,18],
"globals_func_s.html":[16,1,1,19],
"globals_func_t.html":[16,1,1,20],
"globals_func_u.html":[16,1,1,21],
"globals_func_v.html":[16,1,1,22],
"globals_func_w.html":[16,1,1,23],
"globals_func_x.html":[16,1,1,24],
"globals_g.html":[16,1,0,7],
"globals_h.html":[16,1,0,8],
"globals_i.html":[16,1,0,9],
"globals_j.html":[16,1,0,10],
"globals_k.html":[16,1,0,11],
"globals_l.html":[16,1,0,12],
"globals_m.html":[16,1,0,13],
"globals_n.html":[16,1,0,14],
"globals_o.html":[16,1,0,15],
"globals_p.html":[16,1,0,16],
"globals_q.html":[16,1,0,17],
"globals_r.html":[16,1,0,18]
"globals_func_n.html":[16,1,1,14]
};

View File

@ -1,5 +1,27 @@
var NAVTREEINDEX4 =
{
"globals_func_o.html":[16,1,1,15],
"globals_func_p.html":[16,1,1,16],
"globals_func_q.html":[16,1,1,17],
"globals_func_r.html":[16,1,1,18],
"globals_func_s.html":[16,1,1,19],
"globals_func_t.html":[16,1,1,20],
"globals_func_u.html":[16,1,1,21],
"globals_func_v.html":[16,1,1,22],
"globals_func_w.html":[16,1,1,23],
"globals_func_x.html":[16,1,1,24],
"globals_g.html":[16,1,0,7],
"globals_h.html":[16,1,0,8],
"globals_i.html":[16,1,0,9],
"globals_j.html":[16,1,0,10],
"globals_k.html":[16,1,0,11],
"globals_l.html":[16,1,0,12],
"globals_m.html":[16,1,0,13],
"globals_n.html":[16,1,0,14],
"globals_o.html":[16,1,0,15],
"globals_p.html":[16,1,0,16],
"globals_q.html":[16,1,0,17],
"globals_r.html":[16,1,0,18],
"globals_s.html":[16,1,0,19],
"globals_t.html":[16,1,0,20],
"globals_type.html":[16,1,3],
@ -10,10 +32,10 @@ var NAVTREEINDEX4 =
"globals_x.html":[16,1,0,24],
"index.html":[],
"index.html":[0],
"index.html#autotoc_md74":[0,0],
"index.html#autotoc_md75":[0,1],
"index.html#autotoc_md76":[0,2],
"index.html#autotoc_md77":[0,3],
"index.html#autotoc_md75":[0,0],
"index.html#autotoc_md76":[0,1],
"index.html#autotoc_md77":[0,2],
"index.html#autotoc_md78":[0,3],
"modules.html":[14],
"pages.html":[]
};

View File

@ -7,11 +7,12 @@ var searchData=
['new_5fnumber_4',['new_number',['../d6/d3d/factorial__large__number_8c.html#ace5f6aa21955d4e4bdc89228c2f91234',1,'factorial_large_number.c']]],
['newnode_5',['newNode',['../da/d02/binary__search__tree_8c.html#adf2169c1008551b20c4a59fcf0c9ab3b',1,'binary_search_tree.c']]],
['newton_5fraphson_5froot_2ec_6',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]],
['next_7',['next',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007',1,'MEMORY_INFORMATION::next()'],['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set::next()'],['../df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a',1,'term::next()'],['../df/dfa/vector_8c.html#af2f92e8cc55e764980bc0573ab5cd06f',1,'next():&#160;vector.c']]],
['next_7',['next',['../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063',1,'node::next()'],['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007',1,'MEMORY_INFORMATION::next()'],['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set::next()'],['../df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a',1,'term::next()'],['../df/dfa/vector_8c.html#af2f92e8cc55e764980bc0573ab5cd06f',1,'next():&#160;vector.c']]],
['next_5fdigit_8',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]],
['node_9',['Node',['../db/d8b/struct_node.html',1,'']]],
['node_10',['node',['../d5/da1/structnode.html',1,'node'],['../da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node():&#160;binary_search_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node():&#160;threaded_binary_trees.c']]],
['num_5fdigits_11',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]],
['num_5fweights_12',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]],
['number_5fof_5fpaths_13',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]]
['node_10',['node',['../d5/da1/structnode.html',1,'node'],['../da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node():&#160;binary_search_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node():&#160;threaded_binary_trees.c'],['../d2/d87/non__preemptive__priority__scheduling_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node():&#160;non_preemptive_priority_scheduling.c']]],
['non_5fpreemptive_5fpriority_5fscheduling_2ec_11',['non_preemptive_priority_scheduling.c',['../d2/d87/non__preemptive__priority__scheduling_8c.html',1,'']]],
['num_5fdigits_12',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]],
['num_5fweights_13',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]],
['number_5fof_5fpaths_14',['number_of_paths',['../d7/d91/problem__15_2sol1_8c.html#a4650d1d3897633d84253f93433f601d6',1,'sol1.c']]]
];

View File

@ -7,7 +7,7 @@ var searchData=
['poly_5fadd_2ec_4',['poly_add.c',['../d0/dcb/poly__add_8c.html',1,'']]],
['poly_5ffunction_5',['poly_function',['../da/d38/durand__kerner__roots_8c.html#a321f9781a9744ccdaf0aba89f35ec29c',1,'durand_kerner_roots.c']]],
['pop_6',['pop',['../db/d0c/infix__to__postfix_8c.html#a940cdcd27c40699eebb4ef113b2d9451',1,'pop(struct Stack *p):&#160;infix_to_postfix.c'],['../da/d96/infix__to__postfix2_8c.html#a312e7f6c761a199c1369fbe651e084f0',1,'pop():&#160;infix_to_postfix2.c'],['../df/d43/postfix__evaluation_8c.html#a8546e4b3f61be1f09ce47f428116ad7d',1,'pop():&#160;postfix_evaluation.c']]],
['port_7',['PORT',['../dd/d93/client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;client.c'],['../d9/ddd/remote__command__exec__udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;remote_command_exec_udp_client.c'],['../dd/d79/remote__command__exec__udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;remote_command_exec_udp_server.c'],['../d1/d20/server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;server.c'],['../d1/d98/tcp__full__duplex__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;tcp_full_duplex_client.c'],['../d1/d6b/tcp__full__duplex__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;tcp_full_duplex_server.c'],['../da/d07/tcp__half__duplex__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;tcp_half_duplex_client.c'],['../d6/d2b/tcp__half__duplex__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;tcp_half_duplex_server.c'],['../da/de6/udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;udp_client.c'],['../d8/dca/udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;udp_server.c']]],
['port_7',['PORT',['../d8/dca/udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;udp_server.c'],['../dd/d93/client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;client.c'],['../d9/ddd/remote__command__exec__udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;remote_command_exec_udp_client.c'],['../dd/d79/remote__command__exec__udp__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;remote_command_exec_udp_server.c'],['../d1/d20/server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;server.c'],['../d1/d98/tcp__full__duplex__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;tcp_full_duplex_client.c'],['../d1/d6b/tcp__full__duplex__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;tcp_full_duplex_server.c'],['../da/d07/tcp__half__duplex__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;tcp_half_duplex_client.c'],['../d6/d2b/tcp__half__duplex__server_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;tcp_half_duplex_server.c'],['../da/de6/udp__client_8c.html#a614217d263be1fb1a5f76e2ff7be19a2',1,'PORT():&#160;udp_client.c']]],
['positionboat_8',['positionBoat',['../db/de2/naval__battle_8c.html#a3f7d3dc5931fba6164e73057859094d9',1,'naval_battle.c']]],
['postfix_5fevaluation_2ec_9',['postfix_evaluation.c',['../df/d43/postfix__evaluation_8c.html',1,'']]],
['postorder_5fdisplay_10',['postorder_display',['../df/d3c/threaded__binary__trees_8c.html#a5a82ae0ee13788be51ca4ba6cddb0719',1,'threaded_binary_trees.c']]],
@ -30,13 +30,13 @@ var searchData=
['print_5fstring_27',['print_string',['../d9/deb/min__printf_8h.html#af569209570eca8bc6770fb7d9dc873e6',1,'min_printf.h']]],
['print_5fvector_28',['print_vector',['../de/d7b/group__vec__3d.html#gae25e1f2e973933bef65838601e2de0af',1,'vectors_3d.c']]],
['printeps_29',['printEPS',['../d6/d76/k__means__clustering_8c.html#a5b4ba704e02672e59cfa35f82e3db28a',1,'k_means_clustering.c']]],
['printleaks_30',['printLeaks',['../d2/ddd/malloc__dbg_8h.html#abfd0a4452069af4cfefe4a5d037e92ef',1,'printLeaks(void):&#160;malloc_dbg.c'],['../db/d84/malloc__dbg_8c.html#a2a47e4c38db8c00b80248e5535adf797',1,'printLeaks():&#160;malloc_dbg.c']]],
['printleaks_30',['printLeaks',['../db/d84/malloc__dbg_8c.html#a2a47e4c38db8c00b80248e5535adf797',1,'printLeaks():&#160;malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#abfd0a4452069af4cfefe4a5d037e92ef',1,'printLeaks(void):&#160;malloc_dbg.c']]],
['printmessage_31',['printMessage',['../db/de2/naval__battle_8c.html#a521043b369238e618dcc9364b40448ef',1,'naval_battle.c']]],
['printmessagescore_32',['printMessageScore',['../db/de2/naval__battle_8c.html#a2d65de2c86c7015d7ca400dfca0f25dc',1,'naval_battle.c']]],
['printpositioning_33',['printPositioning',['../db/de2/naval__battle_8c.html#a5c84d83e31ca6a320b6ea8081402686a',1,'naval_battle.c']]],
['printstray_34',['printsTray',['../db/de2/naval__battle_8c.html#ad527fa96e729742a231c4535e112526a',1,'naval_battle.c']]],
['printtable_35',['printTable',['../db/de2/naval__battle_8c.html#a3889e1ee574e03ffdde8804180d57543',1,'naval_battle.c']]],
['priority_36',['priority',['../da/d96/infix__to__postfix2_8c.html#a02d1bf0ff997efc46ba6fd0ec7952952',1,'infix_to_postfix2.c']]],
['priority_36',['priority',['../d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b',1,'node::priority()'],['../da/d96/infix__to__postfix2_8c.html#a02d1bf0ff997efc46ba6fd0ec7952952',1,'priority(char opr):&#160;infix_to_postfix2.c']]],
['problem_37',['problem',['../d4/d07/ode__forward__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy):&#160;ode_forward_euler.c'],['../d1/dc2/ode__midpoint__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy):&#160;ode_midpoint_euler.c'],['../d4/d99/ode__semi__implicit__euler_8c.html#a97075291390a68c262ed66e157a57eb4',1,'problem(const double *x, double *y, double *dy):&#160;ode_semi_implicit_euler.c']]],
['projecteuler_38',['ProjectEuler',['../d8/d81/md_project_euler__r_e_a_d_m_e.html',1,'']]],
['propagate_39',['propagate',['../dc/d80/cantor__set_8c.html#a1f156d2b53b80305bd2fa3ff5fdf3c97',1,'cantor_set.c']]],

View File

@ -28,31 +28,32 @@ var searchData=
['shell_5fsort2_2ec_25',['shell_sort2.c',['../d6/ded/shell__sort2_8c.html',1,'']]],
['shoot_26',['shoot',['../db/de2/naval__battle_8c.html#a23e98ed36ca08c1b4bb86c86f48f6e70',1,'naval_battle.c']]],
['show_5fdata_27',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]],
['sigma_28',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]],
['sigma2_29',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]],
['simple_20generic_20stack_30',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]],
['so1_2ec_31',['so1.c',['../d0/d7f/so1_8c.html',1,'']]],
['sol_2ec_32',['sol.c',['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)'],['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)']]],
['sol1_2ec_33',['sol1.c',['../db/d80/problem__20_2sol1_8c.html',1,'(Global Namespace)'],['../da/d35/problem__1_2sol1_8c.html',1,'(Global Namespace)'],['../d0/d6d/problem__10_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d1f/problem__12_2sol1_8c.html',1,'(Global Namespace)'],['../db/d01/problem__13_2sol1_8c.html',1,'(Global Namespace)'],['../d4/dea/problem__14_2sol1_8c.html',1,'(Global Namespace)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d91/problem__15_2sol1_8c.html',1,'(Global Namespace)'],['../d6/d88/problem__16_2sol1_8c.html',1,'(Global Namespace)'],['../dd/df0/problem__19_2sol1_8c.html',1,'(Global Namespace)'],['../df/d1a/problem__21_2sol1_8c.html',1,'(Global Namespace)'],['../dd/d8b/problem__22_2sol1_8c.html',1,'(Global Namespace)'],['../d7/ddb/problem__23_2sol1_8c.html',1,'(Global Namespace)'],['../d8/d32/problem__25_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)'],['../d1/df9/problem__26_2sol1_8c.html',1,'(Global Namespace)'],['../d7/dd3/problem__3_2sol1_8c.html',1,'(Global Namespace)'],['../d4/d83/problem__401_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d32/problem__5_2sol1_8c.html',1,'(Global Namespace)']]],
['sol2_2ec_34',['sol2.c',['../d5/d3d/problem__5_2sol2_8c.html',1,'(Global Namespace)'],['../d6/d64/problem__7_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dbc/problem__3_2sol2_8c.html',1,'(Global Namespace)'],['../d2/d93/problem__8_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)'],['../d9/da7/problem__10_2sol2_8c.html',1,'(Global Namespace)'],['../d4/dbd/problem__23_2sol2_8c.html',1,'(Global Namespace)'],['../d8/de0/problem__9_2sol2_8c.html',1,'(Global Namespace)']]],
['sol3_2ec_35',['sol3.c',['../d5/d7c/problem__5_2sol3_8c.html',1,'(Global Namespace)'],['../da/d56/problem__1_2sol3_8c.html',1,'(Global Namespace)']]],
['sol4_2ec_36',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]],
['solve_37',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]],
['sorting_20algorithms_38',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]],
['spirograph_39',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]],
['spirograph_2ec_40',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]],
['st_41',['st',['../df/d43/postfix__evaluation_8c.html#a791cc5e78425bce611db4e3bdc4b19d5',1,'st():&#160;postfix_evaluation.c'],['../da/d96/infix__to__postfix2_8c.html#a791cc5e78425bce611db4e3bdc4b19d5',1,'st():&#160;infix_to_postfix2.c']]],
['stack_42',['stack',['../dd/d10/struct_stack.html#a856ca6f4a9ffde43f0cb3b43cb4d044d',1,'Stack::stack()'],['../dd/d10/struct_stack.html#aa16cf0b36f9735ed00bde97a5013adaa',1,'Stack::stack()']]],
['stack_43',['Stack',['../dd/d10/struct_stack.html',1,'']]],
['start_44',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]],
['stats_5fcomputer1_45',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]],
['stats_5fcomputer2_46',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]],
['strong_5fnumber_2ec_47',['strong_number.c',['../d4/dcc/strong__number_8c.html',1,'']]],
['subset_48',['subset',['../dc/de5/structsubset.html',1,'']]],
['sudoku_49',['sudoku',['../dc/d18/structsudoku.html',1,'']]],
['sudoku_20solver_50',['Sudoku solver',['../d5/df4/group__sudoku.html',1,'']]],
['sudoku_5fsolver_2ec_51',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]],
['sum_5fof_5fdivisors_52',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]],
['sum_5fof_5fprimes_53',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]],
['swap_54',['swap',['../dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;bubble_sort_recursion.c'],['../de/dff/heap__sort__2_8c.html#aaf68497ab808b560dbf109da6435905a',1,'swap(int8_t *first, int8_t *second):&#160;heap_sort_2.c'],['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'swap(int *a, int *b):&#160;merge_sort.c'],['../d1/d94/odd__even__sort_8c.html#ac2eee54959bc040cfcb56d2d8047853a',1,'swap(int32_t *first, int32_t *second):&#160;odd_even_sort.c'],['../df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;selection_sort.c'],['../dc/d39/selection__sort__recursive_8c.html#aaf68497ab808b560dbf109da6435905a',1,'swap(int8_t *first, int8_t *second):&#160;selection_sort_recursive.c']]]
['show_5flist_28',['show_list',['../d2/d87/non__preemptive__priority__scheduling_8c.html#adeb04e9743495f14aa4ef78631b9253c',1,'non_preemptive_priority_scheduling.c']]],
['sigma_29',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]],
['sigma2_30',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]],
['simple_20generic_20stack_31',['Simple generic Stack',['../d1/d12/md_data_structures_stack__r_e_a_d_m_e.html',1,'']]],
['so1_2ec_32',['so1.c',['../d0/d7f/so1_8c.html',1,'']]],
['sol_2ec_33',['sol.c',['../d0/d6c/problem__4_2sol_8c.html',1,'(Global Namespace)'],['../d4/d7b/problem__6_2sol_8c.html',1,'(Global Namespace)'],['../d1/d2f/problem__7_2sol_8c.html',1,'(Global Namespace)']]],
['sol1_2ec_34',['sol1.c',['../db/d80/problem__20_2sol1_8c.html',1,'(Global Namespace)'],['../da/d35/problem__1_2sol1_8c.html',1,'(Global Namespace)'],['../d0/d6d/problem__10_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d1f/problem__12_2sol1_8c.html',1,'(Global Namespace)'],['../db/d01/problem__13_2sol1_8c.html',1,'(Global Namespace)'],['../d4/dea/problem__14_2sol1_8c.html',1,'(Global Namespace)'],['../d7/d91/problem__15_2sol1_8c.html',1,'(Global Namespace)'],['../d6/d88/problem__16_2sol1_8c.html',1,'(Global Namespace)'],['../dd/df0/problem__19_2sol1_8c.html',1,'(Global Namespace)'],['../df/d1a/problem__21_2sol1_8c.html',1,'(Global Namespace)'],['../dd/d8b/problem__22_2sol1_8c.html',1,'(Global Namespace)'],['../d7/ddb/problem__23_2sol1_8c.html',1,'(Global Namespace)'],['../d8/d32/problem__25_2sol1_8c.html',1,'(Global Namespace)'],['../df/da5/problem__9_2sol1_8c.html',1,'(Global Namespace)'],['../d1/df9/problem__26_2sol1_8c.html',1,'(Global Namespace)'],['../d7/dd3/problem__3_2sol1_8c.html',1,'(Global Namespace)'],['../d4/d83/problem__401_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d63/problem__8_2sol1_8c.html',1,'(Global Namespace)'],['../dc/d32/problem__5_2sol1_8c.html',1,'(Global Namespace)']]],
['sol2_2ec_35',['sol2.c',['../d6/d64/problem__7_2sol2_8c.html',1,'(Global Namespace)'],['../d2/d93/problem__8_2sol2_8c.html',1,'(Global Namespace)'],['../d5/d3d/problem__5_2sol2_8c.html',1,'(Global Namespace)'],['../d8/de0/problem__9_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dae/problem__1_2sol2_8c.html',1,'(Global Namespace)'],['../d9/da7/problem__10_2sol2_8c.html',1,'(Global Namespace)'],['../d4/dbd/problem__23_2sol2_8c.html',1,'(Global Namespace)'],['../d2/dbc/problem__3_2sol2_8c.html',1,'(Global Namespace)']]],
['sol3_2ec_36',['sol3.c',['../d5/d7c/problem__5_2sol3_8c.html',1,'(Global Namespace)'],['../da/d56/problem__1_2sol3_8c.html',1,'(Global Namespace)']]],
['sol4_2ec_37',['sol4.c',['../d6/d1b/sol4_8c.html',1,'']]],
['solve_38',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]],
['sorting_20algorithms_39',['Sorting algorithms',['../d5/d4c/group__sorting.html',1,'']]],
['spirograph_40',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]],
['spirograph_2ec_41',['spirograph.c',['../d7/d98/spirograph_8c.html',1,'']]],
['st_42',['st',['../df/d43/postfix__evaluation_8c.html#a791cc5e78425bce611db4e3bdc4b19d5',1,'st():&#160;postfix_evaluation.c'],['../da/d96/infix__to__postfix2_8c.html#a791cc5e78425bce611db4e3bdc4b19d5',1,'st():&#160;infix_to_postfix2.c']]],
['stack_43',['stack',['../dd/d10/struct_stack.html#a856ca6f4a9ffde43f0cb3b43cb4d044d',1,'Stack::stack()'],['../dd/d10/struct_stack.html#aa16cf0b36f9735ed00bde97a5013adaa',1,'Stack::stack()']]],
['stack_44',['Stack',['../dd/d10/struct_stack.html',1,'']]],
['start_45',['start',['../d9/dd7/struct__cantor__set.html#abd2176c3cc3a1d85d15bbeaace35fa03',1,'_cantor_set']]],
['stats_5fcomputer1_46',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]],
['stats_5fcomputer2_47',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]],
['strong_5fnumber_2ec_48',['strong_number.c',['../d4/dcc/strong__number_8c.html',1,'']]],
['subset_49',['subset',['../dc/de5/structsubset.html',1,'']]],
['sudoku_50',['sudoku',['../dc/d18/structsudoku.html',1,'']]],
['sudoku_20solver_51',['Sudoku solver',['../d5/df4/group__sudoku.html',1,'']]],
['sudoku_5fsolver_2ec_52',['sudoku_solver.c',['../de/dac/sudoku__solver_8c.html',1,'']]],
['sum_5fof_5fdivisors_53',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]],
['sum_5fof_5fprimes_54',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]],
['swap_55',['swap',['../dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;bubble_sort_recursion.c'],['../de/dff/heap__sort__2_8c.html#aaf68497ab808b560dbf109da6435905a',1,'swap(int8_t *first, int8_t *second):&#160;heap_sort_2.c'],['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'swap(int *a, int *b):&#160;merge_sort.c'],['../d1/d94/odd__even__sort_8c.html#ac2eee54959bc040cfcb56d2d8047853a',1,'swap(int32_t *first, int32_t *second):&#160;odd_even_sort.c'],['../df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;selection_sort.c'],['../dc/d39/selection__sort__recursive_8c.html#aaf68497ab808b560dbf109da6435905a',1,'swap(int8_t *first, int8_t *second):&#160;selection_sort_recursive.c']]]
];

View File

@ -1,37 +1,38 @@
var searchData=
[
['t_0',['T',['../d5/d7e/struct_t.html',1,'']]],
['tcp_5ffull_5fduplex_5fclient_2ec_1',['tcp_full_duplex_client.c',['../d1/d98/tcp__full__duplex__client_8c.html',1,'']]],
['tcp_5ffull_5fduplex_5fserver_2ec_2',['tcp_full_duplex_server.c',['../d1/d6b/tcp__full__duplex__server_8c.html',1,'']]],
['tcp_5fhalf_5fduplex_5fclient_2ec_3',['tcp_half_duplex_client.c',['../da/d07/tcp__half__duplex__client_8c.html',1,'']]],
['tcp_5fhalf_5fduplex_5fserver_2ec_4',['tcp_half_duplex_server.c',['../d6/d2b/tcp__half__duplex__server_8c.html',1,'']]],
['term_5',['term',['../df/d86/structterm.html',1,'']]],
['test_6',['test',['../dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;bubble_sort.c'],['../db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;insertion_sort.c'],['../dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;selection_sort_recursive.c'],['../df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;selection_sort.c'],['../d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;odd_even_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;insertion_sort_recursive.c'],['../de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;heap_sort_2.c'],['../df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5',1,'test(int16_t *pcm, uint8_t *coded, int16_t *decoded, size_t len):&#160;alaw.c'],['../d1/dba/decimal__to__any__base_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;decimal_to_any_base.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;decimal_to_binary_recursion.c'],['../da/d96/infix__to__postfix2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;infix_to_postfix2.c'],['../dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;octal_to_hexadecimal.c'],['../da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;segment_tree.c'],['../d3/d78/words__alphabetical_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;words_alphabetical.c'],['../df/dfa/vector_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;vector.c'],['../d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;vectors_3d.c'],['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void):&#160;spirograph.c'],['../d9/dcc/prim_8c.html#aff3f4c22009b2aa4e385a76a8a1cdc1c',1,'test(uint16_t G[][MAX], uint16_t MST[][MAX], uint16_t V):&#160;prim.c'],['../d0/df3/6_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;6.c'],['../d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;k_means_clustering.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;cartesian_to_polar.c'],['../d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;fibonacci_formula.c'],['../df/d43/postfix__evaluation_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;postfix_evaluation.c'],['../da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;prime.c'],['../d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;prime_seive.c'],['../de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;rot13.c'],['../d1/dc7/run__length__encoding_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;run_length_encoding.c'],['../d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;strong_number.c'],['../df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;binary_search.c'],['../da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;exponential_search.c'],['../d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;floyd_cycle_detection_algorithm.c'],['../d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;jump_search.c'],['../d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;sentinel_linear_search.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;bubble_sort_recursion.c'],['../d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;bubble_sort_2.c']]],
['test1_7',['test1',['../dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9',1,'test1(double eta):&#160;adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af',1,'test1(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;qr_eigen_values.c']]],
['test2_8',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta):&#160;adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;k_means_clustering.c'],['../d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409',1,'test2(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;qr_eigen_values.c']]],
['test3_9',['test3',['../dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1',1,'test3(double eta):&#160;adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57',1,'test3(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c']]],
['test_5f2d_5fclasses_10',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]],
['test_5f3d_5fclasses_11',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]],
['test_5f3d_5fclasses1_12',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]],
['test_5f3d_5fclasses2_13',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]],
['test_5fadler32_14',['test_adler32',['../d7/d3b/group__hash.html#ga994ea8b243b6c0fbef734551ec5765dd',1,'hash_adler32.c']]],
['test_5fc_5fatoi_15',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]],
['test_5fcircle_16',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]],
['test_5fcrc32_17',['test_crc32',['../d7/d3b/group__hash.html#gad451622bbdca271edfa8e0d98ca422f2',1,'hash_crc32.c']]],
['test_5fdjb2_18',['test_djb2',['../d7/d3b/group__hash.html#ga9f76001544014905468dc812336110d5',1,'hash_djb2.c']]],
['test_5ffunction_19',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]],
['test_5flamniscate_20',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]],
['test_5fmalloc_5fdbg_2ec_21',['test_malloc_dbg.c',['../dd/d11/test__malloc__dbg_8c.html',1,'']]],
['test_5fmin_5fprintf_2ec_22',['test_min_printf.c',['../d5/d5c/test__min__printf_8c.html',1,'']]],
['test_5fsdbm_23',['test_sdbm',['../d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453',1,'hash_sdbm.c']]],
['test_5fxor8_24',['test_xor8',['../d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0',1,'hash_xor8.c']]],
['testzigzag_25',['testZigZag',['../d0/df3/6_8c.html#a109c3813445bcf97d154a671119deae9',1,'6.c']]],
['the_20algorithms_20_2d_20c_26',['The Algorithms - C',['../index.html',1,'']]],
['threaded_5fbinary_5ftrees_2ec_27',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]],
['tnode_28',['tnode',['../d8/d7a/structtnode.html',1,'']]],
['to_5fpolar_29',['to_polar',['../d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70',1,'cartesian_to_polar.c']]],
['top_30',['top',['../dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a',1,'Stack']]],
['top_31',['Top',['../da/d96/infix__to__postfix2_8c.html#a2d1c13296ce9c42bb5dd7d834e2802bf',1,'infix_to_postfix2.c']]],
['tos_32',['tos',['../dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9',1,'Stack']]],
['trie_33',['trie',['../d4/dd9/structtrie.html',1,'']]]
['tat_1',['TAT',['../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3',1,'node']]],
['tcp_5ffull_5fduplex_5fclient_2ec_2',['tcp_full_duplex_client.c',['../d1/d98/tcp__full__duplex__client_8c.html',1,'']]],
['tcp_5ffull_5fduplex_5fserver_2ec_3',['tcp_full_duplex_server.c',['../d1/d6b/tcp__full__duplex__server_8c.html',1,'']]],
['tcp_5fhalf_5fduplex_5fclient_2ec_4',['tcp_half_duplex_client.c',['../da/d07/tcp__half__duplex__client_8c.html',1,'']]],
['tcp_5fhalf_5fduplex_5fserver_2ec_5',['tcp_half_duplex_server.c',['../d6/d2b/tcp__half__duplex__server_8c.html',1,'']]],
['term_6',['term',['../df/d86/structterm.html',1,'']]],
['test_7',['test',['../d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;sentinel_linear_search.c'],['../de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;heap_sort_2.c'],['../dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;selection_sort_recursive.c'],['../df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;selection_sort.c'],['../d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;odd_even_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;insertion_sort_recursive.c'],['../db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;insertion_sort.c'],['../df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5',1,'test(int16_t *pcm, uint8_t *coded, int16_t *decoded, size_t len):&#160;alaw.c'],['../d1/dba/decimal__to__any__base_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;decimal_to_any_base.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;decimal_to_binary_recursion.c'],['../da/d96/infix__to__postfix2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;infix_to_postfix2.c'],['../dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;octal_to_hexadecimal.c'],['../da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;segment_tree.c'],['../d3/d78/words__alphabetical_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;words_alphabetical.c'],['../df/dfa/vector_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;vector.c'],['../d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;vectors_3d.c'],['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void):&#160;spirograph.c'],['../d9/dcc/prim_8c.html#aff3f4c22009b2aa4e385a76a8a1cdc1c',1,'test(uint16_t G[][MAX], uint16_t MST[][MAX], uint16_t V):&#160;prim.c'],['../d0/df3/6_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;6.c'],['../d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;k_means_clustering.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;cartesian_to_polar.c'],['../d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;fibonacci_formula.c'],['../df/d43/postfix__evaluation_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;postfix_evaluation.c'],['../da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;prime.c'],['../d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;prime_seive.c'],['../de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;rot13.c'],['../d1/dc7/run__length__encoding_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;run_length_encoding.c'],['../d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;strong_number.c'],['../d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;non_preemptive_priority_scheduling.c'],['../df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;binary_search.c'],['../da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;exponential_search.c'],['../d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;floyd_cycle_detection_algorithm.c'],['../d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;jump_search.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;bubble_sort_recursion.c'],['../dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;bubble_sort.c'],['../d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;bubble_sort_2.c']]],
['test1_8',['test1',['../dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9',1,'test1(double eta):&#160;adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af',1,'test1(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;qr_eigen_values.c']]],
['test2_9',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta):&#160;adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;k_means_clustering.c'],['../d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409',1,'test2(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;qr_eigen_values.c']]],
['test3_10',['test3',['../dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1',1,'test3(double eta):&#160;adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57',1,'test3(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c']]],
['test_5f2d_5fclasses_11',['test_2d_classes',['../d2/df6/kohonen__som__topology_8c.html#adb5ded007be1fd666fab9affe6764018',1,'kohonen_som_topology.c']]],
['test_5f3d_5fclasses_12',['test_3d_classes',['../d0/d46/kohonen__som__trace_8c.html#a41ae16442e3e5b891a58d2e5932a2cd0',1,'kohonen_som_trace.c']]],
['test_5f3d_5fclasses1_13',['test_3d_classes1',['../d2/df6/kohonen__som__topology_8c.html#ad9e25202bb8b481461f932668f249dbc',1,'kohonen_som_topology.c']]],
['test_5f3d_5fclasses2_14',['test_3d_classes2',['../d2/df6/kohonen__som__topology_8c.html#a5bb02a8322d717ead1b11182c5f02a3a',1,'kohonen_som_topology.c']]],
['test_5fadler32_15',['test_adler32',['../d7/d3b/group__hash.html#ga994ea8b243b6c0fbef734551ec5765dd',1,'hash_adler32.c']]],
['test_5fc_5fatoi_16',['test_c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#a8c66c03637e48e375b80b5d7791e57be',1,'c_atoi_str_to_integer.c']]],
['test_5fcircle_17',['test_circle',['../d0/d46/kohonen__som__trace_8c.html#a107f00650b8041f77767927073ddddb8',1,'kohonen_som_trace.c']]],
['test_5fcrc32_18',['test_crc32',['../d7/d3b/group__hash.html#gad451622bbdca271edfa8e0d98ca422f2',1,'hash_crc32.c']]],
['test_5fdjb2_19',['test_djb2',['../d7/d3b/group__hash.html#ga9f76001544014905468dc812336110d5',1,'hash_djb2.c']]],
['test_5ffunction_20',['test_function',['../dc/d47/realtime__stats_8c.html#aa54c915581fcc495489175a4386d59fd',1,'realtime_stats.c']]],
['test_5flamniscate_21',['test_lamniscate',['../d0/d46/kohonen__som__trace_8c.html#aa2246f940155472084ee461f3685d614',1,'kohonen_som_trace.c']]],
['test_5fmalloc_5fdbg_2ec_22',['test_malloc_dbg.c',['../dd/d11/test__malloc__dbg_8c.html',1,'']]],
['test_5fmin_5fprintf_2ec_23',['test_min_printf.c',['../d5/d5c/test__min__printf_8c.html',1,'']]],
['test_5fsdbm_24',['test_sdbm',['../d7/d3b/group__hash.html#gab87679863646255178427a56dc33e453',1,'hash_sdbm.c']]],
['test_5fxor8_25',['test_xor8',['../d7/d3b/group__hash.html#ga39d4c16427acbf8bbe744f6d8ed61dc0',1,'hash_xor8.c']]],
['testzigzag_26',['testZigZag',['../d0/df3/6_8c.html#a109c3813445bcf97d154a671119deae9',1,'6.c']]],
['the_20algorithms_20_2d_20c_27',['The Algorithms - C',['../index.html',1,'']]],
['threaded_5fbinary_5ftrees_2ec_28',['threaded_binary_trees.c',['../df/d3c/threaded__binary__trees_8c.html',1,'']]],
['tnode_29',['tnode',['../d8/d7a/structtnode.html',1,'']]],
['to_5fpolar_30',['to_polar',['../d6/d2e/cartesian__to__polar_8c.html#afb80d77f0c994240309ccddcc9525e70',1,'cartesian_to_polar.c']]],
['top_31',['top',['../dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a',1,'Stack']]],
['top_32',['Top',['../da/d96/infix__to__postfix2_8c.html#a2d1c13296ce9c42bb5dd7d834e2802bf',1,'infix_to_postfix2.c']]],
['tos_33',['tos',['../dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9',1,'Stack']]],
['trie_34',['trie',['../d4/dd9/structtrie.html',1,'']]]
];

View File

@ -5,5 +5,6 @@ var searchData=
['unget_5fch_2',['unget_ch',['../d9/deb/min__printf_8h.html#aa8a17b7d234a2fb2174da02074a14055',1,'min_printf.h']]],
['union_5ffind_2ec_3',['union_find.c',['../df/df3/union__find_8c.html',1,'']]],
['unit_5fvec_4',['unit_vec',['../de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e',1,'vectors_3d.c']]],
['user_5fgraph_5',['user_graph',['../d9/dcc/prim_8c.html#addac7a8c7bfd3e5573dad1f6aeff7768',1,'prim.c']]]
['update_5',['update',['../d2/d87/non__preemptive__priority__scheduling_8c.html#a9bc34d3b138bd0153a942cf6a8b31533',1,'non_preemptive_priority_scheduling.c']]],
['user_5fgraph_6',['user_graph',['../d9/dcc/prim_8c.html#addac7a8c7bfd3e5573dad1f6aeff7768',1,'prim.c']]]
];

View File

@ -5,5 +5,6 @@ var searchData=
['word_2',['word',['../db/d8b/struct_node.html#afa6ccc6414d3e0bcacb715dcdf764bca',1,'Node']]],
['word_5fcount_5fword_3',['word_count_word',['../df/ddb/structword__count__word.html',1,'']]],
['words_5falphabetical_2ec_4',['words_alphabetical.c',['../d3/d78/words__alphabetical_8c.html',1,'']]],
['writecontentoftreetofile_5',['writeContentOfTreeToFile',['../d3/d78/words__alphabetical_8c.html#a22516c70583c9fa78e4edffb063836cc',1,'words_alphabetical.c']]]
['writecontentoftreetofile_5',['writeContentOfTreeToFile',['../d3/d78/words__alphabetical_8c.html#a22516c70583c9fa78e4edffb063836cc',1,'words_alphabetical.c']]],
['wt_6',['WT',['../d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653',1,'node']]]
];

View File

@ -20,7 +20,8 @@ var searchData=
['alaw_2ec_17',['alaw.c',['../df/d27/alaw_8c.html',1,'']]],
['allocatememoryfornode_18',['allocateMemoryForNode',['../d3/d78/words__alphabetical_8c.html#a1e5ad8401396df36ab585d79f3309fd9',1,'words_alphabetical.c']]],
['array_19',['Array',['../d9/d41/md_data_structures_array__r_e_a_d_m_e.html',1,'']]],
['atexitcalled_20',['atexitCalled',['../db/d84/malloc__dbg_8c.html#ad04afbbcb9f0f10bc7628ec4f0d7c950',1,'malloc_dbg.c']]],
['audio_21',['Audio',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]],
['avlnode_22',['AVLnode',['../d2/d71/struct_a_v_lnode.html',1,'']]]
['at_20',['AT',['../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc',1,'node']]],
['atexitcalled_21',['atexitCalled',['../db/d84/malloc__dbg_8c.html#ad04afbbcb9f0f10bc7628ec4f0d7c950',1,'malloc_dbg.c']]],
['audio_22',['Audio',['../d5/d88/md__d_i_r_e_c_t_o_r_y.html',1,'']]],
['avlnode_23',['AVLnode',['../d2/d71/struct_a_v_lnode.html',1,'']]]
];

View File

@ -13,12 +13,13 @@ var searchData=
['binarysearch1_10',['binarysearch1',['../df/d3b/binary__search_8c.html#a40855c608ca64048d04cff6526f0a582',1,'binary_search.c']]],
['binarysearch2_11',['binarysearch2',['../df/d3b/binary__search_8c.html#a908fd6d2ad0bba33f63f8454888a0032',1,'binary_search.c']]],
['bstiterator_12',['BSTIterator',['../d4/d02/struct_b_s_t_iterator.html',1,'']]],
['bubble_5fsort_13',['bubble_sort',['../d2/d6d/bubble__sort__2_8c.html#a7406723363363b34f29d18f5a80f1281',1,'bubble_sort_2.c']]],
['bubble_5fsort_2ec_14',['bubble_sort.c',['../dd/de4/bubble__sort_8c.html',1,'']]],
['bubble_5fsort_5f2_2ec_15',['bubble_sort_2.c',['../d2/d6d/bubble__sort__2_8c.html',1,'']]],
['bubble_5fsort_5frecursion_2ec_16',['bubble_sort_recursion.c',['../d5/d38/bubble__sort__recursion_8c.html',1,'']]],
['bubblesort_17',['bubbleSort',['../dd/de4/bubble__sort_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size):&#160;bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size):&#160;bubble_sort_recursion.c']]],
['buffer_18',['buffer',['../dd/da2/structbuffer.html',1,'']]],
['buffer_19',['Buffer',['../d9/deb/min__printf_8h.html#abf0876f583782407c9e15c60158eec52',1,'min_printf.h']]],
['bytes_20',['bytes',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d',1,'MEMORY_INFORMATION']]]
['bt_13',['BT',['../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e',1,'node']]],
['bubble_5fsort_14',['bubble_sort',['../d2/d6d/bubble__sort__2_8c.html#a7406723363363b34f29d18f5a80f1281',1,'bubble_sort_2.c']]],
['bubble_5fsort_2ec_15',['bubble_sort.c',['../dd/de4/bubble__sort_8c.html',1,'']]],
['bubble_5fsort_5f2_2ec_16',['bubble_sort_2.c',['../d2/d6d/bubble__sort__2_8c.html',1,'']]],
['bubble_5fsort_5frecursion_2ec_17',['bubble_sort_recursion.c',['../d5/d38/bubble__sort__recursion_8c.html',1,'']]],
['bubblesort_18',['bubbleSort',['../dd/de4/bubble__sort_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size):&#160;bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#aa8989f6c9bfd1f040854fa18b180114f',1,'bubbleSort(int *arr, int size):&#160;bubble_sort_recursion.c']]],
['buffer_19',['buffer',['../dd/da2/structbuffer.html',1,'']]],
['buffer_20',['Buffer',['../d9/deb/min__printf_8h.html#abf0876f583782407c9e15c60158eec52',1,'min_printf.h']]],
['bytes_21',['bytes',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d',1,'MEMORY_INFORMATION']]]
];

View File

@ -2,42 +2,46 @@ var searchData=
[
['c_5fatoi_0',['c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f',1,'c_atoi_str_to_integer.c']]],
['c_5fatoi_5fstr_5fto_5finteger_2ec_1',['c_atoi_str_to_integer.c',['../d7/dd8/c__atoi__str__to__integer_8c.html',1,'']]],
['calculatecentroid_2',['calculateCentroid',['../d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7',1,'k_means_clustering.c']]],
['calculatenearst_3',['calculateNearst',['../d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9',1,'k_means_clustering.c']]],
['calculatescore_4',['calculateScore',['../db/de2/naval__battle_8c.html#ab6e31f8df36de67ff967859069ccfc56',1,'naval_battle.c']]],
['calloc_5',['calloc',['../d2/ddd/malloc__dbg_8h.html#afdddaa949a93c1ef559a638e98f9c21b',1,'malloc_dbg.h']]],
['calloc_5fdbg_6',['calloc_dbg',['../d2/ddd/malloc__dbg_8h.html#ab07f946b77155ca78d0e14e231a99f5d',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName):&#160;malloc_dbg.c'],['../db/d84/malloc__dbg_8c.html#ab07f946b77155ca78d0e14e231a99f5d',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName):&#160;malloc_dbg.c']]],
['canshoot_7',['canShoot',['../db/de2/naval__battle_8c.html#a59224afd73372b4f52415203e315f6e1',1,'naval_battle.c']]],
['cantor_5fset_2ec_8',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]],
['cantorset_9',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]],
['carray_10',['CArray',['../d4/d2d/struct_c_array.html',1,'']]],
['cartesian_5fto_5fpolar_2ec_11',['cartesian_to_polar.c',['../d6/d2e/cartesian__to__polar_8c.html',1,'']]],
['check_5fnumber_12',['check_number',['../d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f',1,'check_number(unsigned long long n):&#160;sol2.c'],['../dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3',1,'check_number(unsigned long long n):&#160;sol1.c']]],
['check_5ftermination_13',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]],
['clear_14',['clear',['../df/dfa/vector_8c.html#ab9dfc1249180f1e924b7333a4e5d133a',1,'vector.c']]],
['client_2ec_15',['client.c',['../dd/d93/client_8c.html',1,'']]],
['closefile_16',['closeFile',['../d3/d78/words__alphabetical_8c.html#af1f9b6eb320d872ba0766dc8bd070075',1,'words_alphabetical.c']]],
['cluster_17',['cluster',['../d1/d99/structcluster.html',1,'']]],
['code_20style_20convention_18',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]],
['coef_19',['coef',['../df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b',1,'term']]],
['collatz_20',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]],
['collatz_2ec_21',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]],
['combine_22',['combine',['../dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df',1,'segment_tree']]],
['combine_5ffunction_23',['combine_function',['../da/da0/segment__tree_8c.html#aca549b5311d32ab1a703b4a4605821d8',1,'segment_tree.c']]],
['compare_24',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]],
['complex_5fstr_25',['complex_str',['../da/d38/durand__kerner__roots_8c.html#a46197e91f478e99a2229562aaaac311e',1,'durand_kerner_roots.c']]],
['contents_26',['contents',['../d4/d06/struct_vector.html#afd870750f3874ee097833fc8a1dc809e',1,'Vector']]],
['contribution_20guidelines_27',['CONTRIBUTION GUIDELINES',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]],
['contributor_20covenant_20code_20of_20conduct_28',['Contributor Covenant Code of Conduct',['../d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html',1,'']]],
['convert_29',['convert',['../db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1',1,'convert(char infix[], char postfix[]):&#160;infix_to_postfix.c'],['../da/d96/infix__to__postfix2_8c.html#ae363a3863a8bfbf40e7a95c2b9dbe71b',1,'convert(char inf[]):&#160;infix_to_postfix2.c'],['../d0/df3/6_8c.html#afdf3bfe2dc8aadac13c7e6d051d3bd5d',1,'convert(char *in, uint16_t numRows):&#160;6.c']]],
['converted_5flen_30',['converted_len',['../d1/dba/decimal__to__any__base_8c.html#a899b3a7e0f1fac5a465eac0d4b10d711',1,'decimal_to_any_base.c']]],
['convertion_31',['convertion',['../d1/dba/decimal__to__any__base_8c.html#a0c5ccb926a23bc0050f213ba3408e18d',1,'decimal_to_any_base.c']]],
['count_32',['count',['../d1/ded/group__misc.html#ga6f8e8c9d25b5891d57e588d80d75028a',1,'count():&#160;prime_seive.c'],['../d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b',1,'cluster::count()']]],
['count_5fdivisors_33',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]],
['crc32_34',['crc32',['../d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567',1,'hash_crc32.c']]],
['create_35',['create',['../dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f',1,'doubly_linked_list.c']]],
['create_5fmatrix_36',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]],
['create_5fnode_37',['create_node',['../df/d3c/threaded__binary__trees_8c.html#a4802bca3f38251543b4aba6765e0390d',1,'threaded_binary_trees.c']]],
['create_5fpolynomial_38',['create_polynomial',['../d0/dcb/poly__add_8c.html#a29eace09ec1373a92003075f1c2f6d9d',1,'poly_add.c']]],
['current_39',['current',['../d4/d06/struct_vector.html#a8cb577f14bea1a6c1fbf85717b3ee4f9',1,'Vector']]]
['calculate_5fct_2',['calculate_ct',['../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df',1,'non_preemptive_priority_scheduling.c']]],
['calculate_5ftat_3',['calculate_tat',['../d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756',1,'non_preemptive_priority_scheduling.c']]],
['calculate_5fwt_4',['calculate_wt',['../d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c',1,'non_preemptive_priority_scheduling.c']]],
['calculatecentroid_5',['calculateCentroid',['../d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7',1,'k_means_clustering.c']]],
['calculatenearst_6',['calculateNearst',['../d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9',1,'k_means_clustering.c']]],
['calculatescore_7',['calculateScore',['../db/de2/naval__battle_8c.html#ab6e31f8df36de67ff967859069ccfc56',1,'naval_battle.c']]],
['calloc_8',['calloc',['../d2/ddd/malloc__dbg_8h.html#afdddaa949a93c1ef559a638e98f9c21b',1,'malloc_dbg.h']]],
['calloc_5fdbg_9',['calloc_dbg',['../d2/ddd/malloc__dbg_8h.html#ab07f946b77155ca78d0e14e231a99f5d',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName):&#160;malloc_dbg.c'],['../db/d84/malloc__dbg_8c.html#ab07f946b77155ca78d0e14e231a99f5d',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName):&#160;malloc_dbg.c']]],
['canshoot_10',['canShoot',['../db/de2/naval__battle_8c.html#a59224afd73372b4f52415203e315f6e1',1,'naval_battle.c']]],
['cantor_5fset_2ec_11',['cantor_set.c',['../dc/d80/cantor__set_8c.html',1,'']]],
['cantorset_12',['CantorSet',['../dc/d80/cantor__set_8c.html#a2b95c356aff8a282eaad255008fa5a94',1,'cantor_set.c']]],
['carray_13',['CArray',['../d4/d2d/struct_c_array.html',1,'']]],
['cartesian_5fto_5fpolar_2ec_14',['cartesian_to_polar.c',['../d6/d2e/cartesian__to__polar_8c.html',1,'']]],
['check_5fnumber_15',['check_number',['../dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3',1,'check_number(unsigned long long n):&#160;sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f',1,'check_number(unsigned long long n):&#160;sol2.c']]],
['check_5ftermination_16',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]],
['clear_17',['clear',['../df/dfa/vector_8c.html#ab9dfc1249180f1e924b7333a4e5d133a',1,'vector.c']]],
['client_2ec_18',['client.c',['../dd/d93/client_8c.html',1,'']]],
['closefile_19',['closeFile',['../d3/d78/words__alphabetical_8c.html#af1f9b6eb320d872ba0766dc8bd070075',1,'words_alphabetical.c']]],
['cluster_20',['cluster',['../d1/d99/structcluster.html',1,'']]],
['code_20style_20convention_21',['Code style convention',['../dc/d64/md__coding_guidelines.html',1,'']]],
['coef_22',['coef',['../df/d86/structterm.html#a5a730814391f70179da78c657e6e6f7b',1,'term']]],
['collatz_23',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]],
['collatz_2ec_24',['collatz.c',['../dc/d80/collatz_8c.html',1,'']]],
['combine_25',['combine',['../dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df',1,'segment_tree']]],
['combine_5ffunction_26',['combine_function',['../da/da0/segment__tree_8c.html#aca549b5311d32ab1a703b4a4605821d8',1,'segment_tree.c']]],
['compare_27',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'compare(const void *a, const void *b):&#160;sol1.c'],['../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09',1,'compare(node *a, node *b):&#160;non_preemptive_priority_scheduling.c']]],
['complex_5fstr_28',['complex_str',['../da/d38/durand__kerner__roots_8c.html#a46197e91f478e99a2229562aaaac311e',1,'durand_kerner_roots.c']]],
['contents_29',['contents',['../d4/d06/struct_vector.html#afd870750f3874ee097833fc8a1dc809e',1,'Vector']]],
['contribution_20guidelines_30',['CONTRIBUTION GUIDELINES',['../d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html',1,'']]],
['contributor_20covenant_20code_20of_20conduct_31',['Contributor Covenant Code of Conduct',['../d4/d4c/md__c_o_d_e__o_f__c_o_n_d_u_c_t.html',1,'']]],
['convert_32',['convert',['../db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1',1,'convert(char infix[], char postfix[]):&#160;infix_to_postfix.c'],['../da/d96/infix__to__postfix2_8c.html#ae363a3863a8bfbf40e7a95c2b9dbe71b',1,'convert(char inf[]):&#160;infix_to_postfix2.c'],['../d0/df3/6_8c.html#afdf3bfe2dc8aadac13c7e6d051d3bd5d',1,'convert(char *in, uint16_t numRows):&#160;6.c']]],
['converted_5flen_33',['converted_len',['../d1/dba/decimal__to__any__base_8c.html#a899b3a7e0f1fac5a465eac0d4b10d711',1,'decimal_to_any_base.c']]],
['convertion_34',['convertion',['../d1/dba/decimal__to__any__base_8c.html#a0c5ccb926a23bc0050f213ba3408e18d',1,'decimal_to_any_base.c']]],
['count_35',['count',['../d1/ded/group__misc.html#ga6f8e8c9d25b5891d57e588d80d75028a',1,'count():&#160;prime_seive.c'],['../d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b',1,'cluster::count()']]],
['count_5fdivisors_36',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]],
['crc32_37',['crc32',['../d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567',1,'hash_crc32.c']]],
['create_38',['create',['../dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f',1,'doubly_linked_list.c']]],
['create_5fmatrix_39',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]],
['create_5fnode_40',['create_node',['../df/d3c/threaded__binary__trees_8c.html#a4802bca3f38251543b4aba6765e0390d',1,'threaded_binary_trees.c']]],
['create_5fpolynomial_41',['create_polynomial',['../d0/dcb/poly__add_8c.html#a29eace09ec1373a92003075f1c2f6d9d',1,'poly_add.c']]],
['ct_42',['CT',['../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882',1,'node']]],
['current_43',['current',['../d4/d06/struct_vector.html#a8cb577f14bea1a6c1fbf85717b3ee4f9',1,'Vector']]]
];

View File

@ -1,32 +1,33 @@
var searchData=
[
['identity_0',['identity',['../dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a',1,'segment_tree']]],
['infix_5fto_5fpostfix_2ec_1',['infix_to_postfix.c',['../db/d0c/infix__to__postfix_8c.html',1,'']]],
['infix_5fto_5fpostfix2_2ec_2',['infix_to_postfix2.c',['../da/d96/infix__to__postfix2_8c.html',1,'']]],
['init_3',['init',['../df/dfa/vector_8c.html#a27a32c68950e464846b6730512968e4b',1,'vector.c']]],
['inlist_4',['inList',['../db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2',1,'malloc_dbg.c']]],
['inorder_5',['inOrder',['../da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc',1,'binary_search_tree.c']]],
['inorder_5fdisplay_6',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]],
['insert_7',['insert',['../da/d02/binary__search__tree_8c.html#a031cc98830742bca57c0da81a0fb779f',1,'insert(node *root, int data):&#160;binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918',1,'insert(List *list, double value, int pos):&#160;doubly_linked_list.c']]],
['insert_5fbt_8',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]],
['insertion_5fsort_2ec_9',['insertion_sort.c',['../db/ddf/insertion__sort_8c.html',1,'']]],
['insertion_5fsort_5frecursive_2ec_10',['insertion_sort_recursive.c',['../de/d0c/insertion__sort__recursive_8c.html',1,'']]],
['insertionsort_11',['insertionSort',['../db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb',1,'insertion_sort.c']]],
['int_5fmax_5flength_12',['INT_MAX_LENGTH',['../d9/deb/min__printf_8h.html#ab47a4bec9213d96e1dba5171e5db0e25',1,'min_printf.h']]],
['int_5fto_5fstring_13',['int_to_string',['../dd/d53/int__to__string_8c.html#aeb4be1a1db1c5fea06e9d8b87e6c3973',1,'int_to_string.c']]],
['int_5fto_5fstring_2ec_14',['int_to_string.c',['../dd/d53/int__to__string_8c.html',1,'']]],
['is_5fabundant_15',['is_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a4f128410e6582fe26488e2316cc96e17',1,'is_abundant(unsigned long N):&#160;sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a34f4ad85151e3a43368ae67f42347f56',1,'is_abundant(unsigned long N):&#160;sol2.c']]],
['is_5fin_16',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]],
['is_5fleap_5fyear_17',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]],
['is_5fnumber_18',['is_number',['../d9/deb/min__printf_8h.html#ad4908ab912d8dc481225e33ca3285c21',1,'min_printf.h']]],
['is_5fpalindromic_19',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]],
['is_5fprime_20',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]],
['is_5fsum_5fof_5fabundant_21',['is_sum_of_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N):&#160;sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N):&#160;sol2.c']]],
['isbad_5falphabet_22',['isbad_alphabet',['../d1/dba/decimal__to__any__base_8c.html#ae071f62d704823751bf9a085bf0a1bd7',1,'decimal_to_any_base.c']]],
['isempty_23',['isEmpty',['../db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021',1,'isEmpty(struct Stack s):&#160;infix_to_postfix.c'],['../da/d96/infix__to__postfix2_8c.html#a653c98c68c558505b75b04c44b7c838e',1,'isEmpty():&#160;infix_to_postfix2.c']]],
['isoprnd_24',['isOprnd',['../db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b',1,'infix_to_postfix.c']]],
['ispalindrome_25',['isPalindrome',['../df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba',1,'palindrome.c']]],
['isprime_26',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]],
['id_0',['ID',['../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454',1,'node']]],
['identity_1',['identity',['../dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a',1,'segment_tree']]],
['infix_5fto_5fpostfix_2ec_2',['infix_to_postfix.c',['../db/d0c/infix__to__postfix_8c.html',1,'']]],
['infix_5fto_5fpostfix2_2ec_3',['infix_to_postfix2.c',['../da/d96/infix__to__postfix2_8c.html',1,'']]],
['init_4',['init',['../df/dfa/vector_8c.html#a27a32c68950e464846b6730512968e4b',1,'vector.c']]],
['inlist_5',['inList',['../db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2',1,'malloc_dbg.c']]],
['inorder_6',['inOrder',['../da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc',1,'binary_search_tree.c']]],
['inorder_5fdisplay_7',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]],
['insert_8',['insert',['../da/d02/binary__search__tree_8c.html#a031cc98830742bca57c0da81a0fb779f',1,'insert(node *root, int data):&#160;binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918',1,'insert(List *list, double value, int pos):&#160;doubly_linked_list.c'],['../d2/d87/non__preemptive__priority__scheduling_8c.html#a5d0943b2e0e1b48b9c3a575a7f262c36',1,'insert(node **root, int id, int at, int bt, int prior):&#160;non_preemptive_priority_scheduling.c']]],
['insert_5fbt_9',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]],
['insertion_5fsort_2ec_10',['insertion_sort.c',['../db/ddf/insertion__sort_8c.html',1,'']]],
['insertion_5fsort_5frecursive_2ec_11',['insertion_sort_recursive.c',['../de/d0c/insertion__sort__recursive_8c.html',1,'']]],
['insertionsort_12',['insertionSort',['../db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb',1,'insertion_sort.c']]],
['int_5fmax_5flength_13',['INT_MAX_LENGTH',['../d9/deb/min__printf_8h.html#ab47a4bec9213d96e1dba5171e5db0e25',1,'min_printf.h']]],
['int_5fto_5fstring_14',['int_to_string',['../dd/d53/int__to__string_8c.html#aeb4be1a1db1c5fea06e9d8b87e6c3973',1,'int_to_string.c']]],
['int_5fto_5fstring_2ec_15',['int_to_string.c',['../dd/d53/int__to__string_8c.html',1,'']]],
['is_5fabundant_16',['is_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a4f128410e6582fe26488e2316cc96e17',1,'is_abundant(unsigned long N):&#160;sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a34f4ad85151e3a43368ae67f42347f56',1,'is_abundant(unsigned long N):&#160;sol2.c']]],
['is_5fin_17',['is_in',['../d4/d83/problem__401_2sol1_8c.html#a4441a6d27134cf3aed05727800d99456',1,'sol1.c']]],
['is_5fleap_5fyear_18',['is_leap_year',['../dd/df0/problem__19_2sol1_8c.html#a6561b1adc8a19c092679b9874da24e2e',1,'sol1.c']]],
['is_5fnumber_19',['is_number',['../d9/deb/min__printf_8h.html#ad4908ab912d8dc481225e33ca3285c21',1,'min_printf.h']]],
['is_5fpalindromic_20',['is_palindromic',['../d0/d6c/problem__4_2sol_8c.html#adf9bea8d35848959bde5b3f277edf0c4',1,'sol.c']]],
['is_5fprime_21',['is_prime',['../d0/d6d/problem__10_2sol1_8c.html#acc871ab6bfead702e983a7f9c412915f',1,'sol1.c']]],
['is_5fsum_5fof_5fabundant_22',['is_sum_of_abundant',['../d7/ddb/problem__23_2sol1_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N):&#160;sol1.c'],['../d4/dbd/problem__23_2sol2_8c.html#a3ab61b5a1c4f2288625d160aa0ea8478',1,'is_sum_of_abundant(unsigned long N):&#160;sol2.c']]],
['isbad_5falphabet_23',['isbad_alphabet',['../d1/dba/decimal__to__any__base_8c.html#ae071f62d704823751bf9a085bf0a1bd7',1,'decimal_to_any_base.c']]],
['isempty_24',['isEmpty',['../db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021',1,'isEmpty(struct Stack s):&#160;infix_to_postfix.c'],['../da/d96/infix__to__postfix2_8c.html#a653c98c68c558505b75b04c44b7c838e',1,'isEmpty():&#160;infix_to_postfix2.c']]],
['isoprnd_25',['isOprnd',['../db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b',1,'infix_to_postfix.c']]],
['ispalindrome_26',['isPalindrome',['../df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba',1,'palindrome.c']]],
['isprime_27',['isPrime',['../da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f',1,'prime.c']]],
['isstrong_28',['isStrong',['../d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5',1,'strong_number.c']]]
['isprime_28',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]],
['isstrong_29',['isStrong',['../d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5',1,'strong_number.c']]]
];

View File

@ -1,14 +1,14 @@
var searchData=
[
['l_0',['L',['../df/db3/struct_l.html',1,'']]],
['large_5fnum_1',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]],
['lazy_5fsort_2',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]],
['lcm_3',['lcm',['../d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol3.c']]],
['leetcode_4',['LeetCode',['../d6/d77/md_leetcode__d_i_r_e_c_t_o_r_y.html',1,'']]],
['left_5',['left',['../d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0',1,'node::left()'],['../db/d8b/struct_node.html#ad0976834843c7618677d22a10c495b36',1,'Node::left()']]],
['len_6',['len',['../d4/d06/struct_vector.html#a55870593ddea19c96770c2521b075059',1,'Vector']]],
['len_7',['LEN',['../df/d27/alaw_8c.html#a05b49c662c073f89e86804f7856622a0',1,'alaw.c']]],
['len_8',['len',['../df/dfa/vector_8c.html#a6f8a49f17bf315bdc30749a57bc7bc93',1,'vector.c']]],
['l_5flength_1',['l_length',['../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9',1,'non_preemptive_priority_scheduling.c']]],
['large_5fnum_2',['large_num',['../d6/d3d/factorial__large__number_8c.html#ab54882961780c41a4929a6d390f6522d',1,'factorial_large_number.c']]],
['lazy_5fsort_3',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]],
['lcm_4',['lcm',['../d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol3.c']]],
['leetcode_5',['LeetCode',['../d6/d77/md_leetcode__d_i_r_e_c_t_o_r_y.html',1,'']]],
['left_6',['left',['../d5/da1/structnode.html#af7109e6ffd82cbbb705e486fd0ce92f0',1,'node::left()'],['../db/d8b/struct_node.html#ad0976834843c7618677d22a10c495b36',1,'Node::left()']]],
['len_7',['len',['../d4/d06/struct_vector.html#a55870593ddea19c96770c2521b075059',1,'Vector::len()'],['../df/dfa/vector_8c.html#a6f8a49f17bf315bdc30749a57bc7bc93',1,'len(Vector *vec):&#160;vector.c']]],
['len_8',['LEN',['../df/d27/alaw_8c.html#a05b49c662c073f89e86804f7856622a0',1,'alaw.c']]],
['length_9',['length',['../dd/d06/structsegment__tree.html#a5ad61abcbd2c25a4a71416281dba8f1e',1,'segment_tree']]],
['library_20for_203d_20vectors_20_26_20quaternions_10',['Library for 3D Vectors &amp; Quaternions',['../de/d5a/group__quaternions.html',1,'']]],
['lims_11',['LIMS',['../d7/d50/qr__eigen__values_8c.html#aee57a411f07599034f5ceb8cc7d65b40',1,'qr_eigen_values.c']]],

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,6 @@
var searchData=
[
['naval_5fbattle_2ec_0',['naval_battle.c',['../db/de2/naval__battle_8c.html',1,'']]],
['newton_5fraphson_5froot_2ec_1',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]]
['newton_5fraphson_5froot_2ec_1',['newton_raphson_root.c',['../dd/d08/newton__raphson__root_8c.html',1,'']]],
['non_5fpreemptive_5fpriority_5fscheduling_2ec_2',['non_preemptive_priority_scheduling.c',['../d2/d87/non__preemptive__priority__scheduling_8c.html',1,'']]]
];

View File

@ -19,13 +19,14 @@ var searchData=
['shell_5fsort_16',['shell_sort',['../dd/d8b/problem__22_2sol1_8c.html#a5bc3659aa0949ea33118c95b1dee5f63',1,'shell_sort(char data[][MAX_NAME_LEN], int LEN):&#160;sol1.c'],['../d5/d4c/group__sorting.html#ga5bc16eaf3ffe6a6ab66780dd445904c0',1,'shell_sort(int *array, long LEN):&#160;shell_sort2.c']]],
['shoot_17',['shoot',['../db/de2/naval__battle_8c.html#a23e98ed36ca08c1b4bb86c86f48f6e70',1,'naval_battle.c']]],
['show_5fdata_18',['show_data',['../d5/d4c/group__sorting.html#gaeccaf61ff47279384d1dba8d869d5c2f',1,'shell_sort2.c']]],
['sigma_19',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]],
['sigma2_20',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]],
['solve_21',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]],
['spirograph_22',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]],
['stats_5fcomputer1_23',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]],
['stats_5fcomputer2_24',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]],
['sum_5fof_5fdivisors_25',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]],
['sum_5fof_5fprimes_26',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]],
['swap_27',['swap',['../dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;bubble_sort_recursion.c'],['../de/dff/heap__sort__2_8c.html#aaf68497ab808b560dbf109da6435905a',1,'swap(int8_t *first, int8_t *second):&#160;heap_sort_2.c'],['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'swap(int *a, int *b):&#160;merge_sort.c'],['../d1/d94/odd__even__sort_8c.html#ac2eee54959bc040cfcb56d2d8047853a',1,'swap(int32_t *first, int32_t *second):&#160;odd_even_sort.c'],['../df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;selection_sort.c'],['../dc/d39/selection__sort__recursive_8c.html#aaf68497ab808b560dbf109da6435905a',1,'swap(int8_t *first, int8_t *second):&#160;selection_sort_recursive.c']]]
['show_5flist_19',['show_list',['../d2/d87/non__preemptive__priority__scheduling_8c.html#adeb04e9743495f14aa4ef78631b9253c',1,'non_preemptive_priority_scheduling.c']]],
['sigma_20',['sigma',['../d4/d83/problem__401_2sol1_8c.html#aaf964739be92adc2f500e7da11e3f6be',1,'sol1.c']]],
['sigma2_21',['sigma2',['../d4/d83/problem__401_2sol1_8c.html#a236548478af932f1115a71f601a68788',1,'sol1.c']]],
['solve_22',['solve',['../d5/df4/group__sudoku.html#gadfe0ed5085b4775d8fa00b434cc0fdfc',1,'sudoku_solver.c']]],
['spirograph_23',['spirograph',['../d7/d98/spirograph_8c.html#a0daa148091ec953809fc172289f773d3',1,'spirograph.c']]],
['stats_5fcomputer1_24',['stats_computer1',['../dc/d47/realtime__stats_8c.html#a63ddcdaab24f722f0963fa2fbe0ae628',1,'realtime_stats.c']]],
['stats_5fcomputer2_25',['stats_computer2',['../dc/d47/realtime__stats_8c.html#a34be233a9200ee2065f6b7b27e2d9a96',1,'realtime_stats.c']]],
['sum_5fof_5fdivisors_26',['sum_of_divisors',['../df/d1a/problem__21_2sol1_8c.html#aacf4b7e708651d2164e86958f2c29c93',1,'sol1.c']]],
['sum_5fof_5fprimes_27',['sum_of_primes',['../d0/d6d/problem__10_2sol1_8c.html#ae3d987cb2ad0ddb0c3caa4c2506a20e5',1,'sol1.c']]],
['swap_28',['swap',['../dd/de4/bubble__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;bubble_sort.c'],['../d5/d38/bubble__sort__recursion_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;bubble_sort_recursion.c'],['../de/dff/heap__sort__2_8c.html#aaf68497ab808b560dbf109da6435905a',1,'swap(int8_t *first, int8_t *second):&#160;heap_sort_2.c'],['../d5/d4c/group__sorting.html#ga4b9708d87be7a409eff20e5e7e8b43c8',1,'swap(int *a, int *b):&#160;merge_sort.c'],['../d1/d94/odd__even__sort_8c.html#ac2eee54959bc040cfcb56d2d8047853a',1,'swap(int32_t *first, int32_t *second):&#160;odd_even_sort.c'],['../df/d83/selection__sort_8c.html#ad126fa7239be97373c96861adc70b1d3',1,'swap(int *first, int *second):&#160;selection_sort.c'],['../dc/d39/selection__sort__recursive_8c.html#aaf68497ab808b560dbf109da6435905a',1,'swap(int8_t *first, int8_t *second):&#160;selection_sort_recursive.c']]]
];

View File

@ -1,6 +1,6 @@
var searchData=
[
['test_0',['test',['../df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5',1,'test(int16_t *pcm, uint8_t *coded, int16_t *decoded, size_t len):&#160;alaw.c'],['../d1/dba/decimal__to__any__base_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;decimal_to_any_base.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;decimal_to_binary_recursion.c'],['../da/d96/infix__to__postfix2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;infix_to_postfix2.c'],['../dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;octal_to_hexadecimal.c'],['../da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;segment_tree.c'],['../d3/d78/words__alphabetical_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;words_alphabetical.c'],['../df/dfa/vector_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;vector.c'],['../d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;vectors_3d.c'],['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void):&#160;spirograph.c'],['../d9/dcc/prim_8c.html#aff3f4c22009b2aa4e385a76a8a1cdc1c',1,'test(uint16_t G[][MAX], uint16_t MST[][MAX], uint16_t V):&#160;prim.c'],['../d0/df3/6_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;6.c'],['../d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;k_means_clustering.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;cartesian_to_polar.c'],['../d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;fibonacci_formula.c'],['../df/d43/postfix__evaluation_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;postfix_evaluation.c'],['../da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;prime.c'],['../d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;prime_seive.c'],['../de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;rot13.c'],['../d1/dc7/run__length__encoding_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;run_length_encoding.c'],['../d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;strong_number.c'],['../df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;binary_search.c'],['../da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;exponential_search.c'],['../d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;floyd_cycle_detection_algorithm.c'],['../d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;jump_search.c'],['../d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;sentinel_linear_search.c'],['../dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;bubble_sort.c'],['../d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;bubble_sort_2.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;bubble_sort_recursion.c'],['../de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;heap_sort_2.c'],['../db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;insertion_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;insertion_sort_recursive.c'],['../d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;odd_even_sort.c'],['../df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;selection_sort.c'],['../dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;selection_sort_recursive.c']]],
['test_0',['test',['../df/d27/alaw_8c.html#a840bf13d2e4d75d38fb7bf3a655152f5',1,'test(int16_t *pcm, uint8_t *coded, int16_t *decoded, size_t len):&#160;alaw.c'],['../d1/dba/decimal__to__any__base_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;decimal_to_any_base.c'],['../d8/d30/decimal__to__binary__recursion_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;decimal_to_binary_recursion.c'],['../da/d96/infix__to__postfix2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;infix_to_postfix2.c'],['../dd/d53/int__to__string_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;int_to_string.c'],['../d0/d8a/octal__to__hexadecimal_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;octal_to_hexadecimal.c'],['../da/da0/segment__tree_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;segment_tree.c'],['../d3/d78/words__alphabetical_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;words_alphabetical.c'],['../df/dfa/vector_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;vector.c'],['../d5/db8/vectors__3d_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;vectors_3d.c'],['../d7/d98/spirograph_8c.html#a708a4c1a4d0c4acc4c447310dd4db27f',1,'test(void):&#160;spirograph.c'],['../d9/dcc/prim_8c.html#aff3f4c22009b2aa4e385a76a8a1cdc1c',1,'test(uint16_t G[][MAX], uint16_t MST[][MAX], uint16_t V):&#160;prim.c'],['../d0/df3/6_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;6.c'],['../d6/d76/k__means__clustering_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;k_means_clustering.c'],['../d6/d2e/cartesian__to__polar_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;cartesian_to_polar.c'],['../d8/d75/fibonacci__formula_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;fibonacci_formula.c'],['../df/d43/postfix__evaluation_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;postfix_evaluation.c'],['../da/d93/prime_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;prime.c'],['../d1/ded/group__misc.html#gaa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;prime_seive.c'],['../de/dcf/rot13_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;rot13.c'],['../d1/dc7/run__length__encoding_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;run_length_encoding.c'],['../d4/dcc/strong__number_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;strong_number.c'],['../d2/d87/non__preemptive__priority__scheduling_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;non_preemptive_priority_scheduling.c'],['../df/d3b/binary__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;binary_search.c'],['../da/d6c/exponential__search_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;exponential_search.c'],['../d2/d9b/floyd__cycle__detection__algorithm_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;floyd_cycle_detection_algorithm.c'],['../d6/d7b/jump__search_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;jump_search.c'],['../d5/de2/sentinel__linear__search_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;sentinel_linear_search.c'],['../dd/de4/bubble__sort_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;bubble_sort.c'],['../d2/d6d/bubble__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;bubble_sort_2.c'],['../d5/d38/bubble__sort__recursion_8c.html#ae1a3968e7947464bee7714f6d43b7002',1,'test():&#160;bubble_sort_recursion.c'],['../de/dff/heap__sort__2_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;heap_sort_2.c'],['../db/ddf/insertion__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;insertion_sort.c'],['../de/d0c/insertion__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;insertion_sort_recursive.c'],['../d1/d94/odd__even__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;odd_even_sort.c'],['../df/d83/selection__sort_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;selection_sort.c'],['../dc/d39/selection__sort__recursive_8c.html#aa8dca7b867074164d5f45b0f3851269d',1,'test():&#160;selection_sort_recursive.c']]],
['test1_1',['test1',['../dd/d8c/adaline__learning_8c.html#ab4ecb3accf5d9e0263087e7265bbe3a9',1,'test1(double eta):&#160;adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#ab215107dbb50c7efa811a687ce9b95af',1,'test1(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a1440a7779ac56f47a3f355ce4a8c7da0',1,'test1():&#160;qr_eigen_values.c']]],
['test2_2',['test2',['../dd/d8c/adaline__learning_8c.html#a05cc9a0acb524fde727a4d7b4a747ee6',1,'test2(double eta):&#160;adaline_learning.c'],['../d6/d76/k__means__clustering_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;k_means_clustering.c'],['../d2/df6/kohonen__som__topology_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#a0c5173884bd798a6ca6f437b9b932409',1,'test2(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c'],['../d7/d50/qr__eigen__values_8c.html#a0283886819c7c140a023582b7269e2d0',1,'test2():&#160;qr_eigen_values.c']]],
['test3_3',['test3',['../dd/d8c/adaline__learning_8c.html#a3f37b9f073f7e57fd0b39d70718af1b1',1,'test3(double eta):&#160;adaline_learning.c'],['../d2/df6/kohonen__som__topology_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3():&#160;kohonen_som_topology.c'],['../d0/d46/kohonen__som__trace_8c.html#a6d0455dd5c30adda100e95f0423c786e',1,'test3():&#160;kohonen_som_trace.c'],['../d0/dcb/poly__add_8c.html#ab138609c765e2fd8b89e9c107cd40d57',1,'test3(struct term *poly1, struct term *poly2, struct term *poly3):&#160;poly_add.c']]],

View File

@ -2,5 +2,6 @@ var searchData=
[
['unget_5fch_0',['unget_ch',['../d9/deb/min__printf_8h.html#aa8a17b7d234a2fb2174da02074a14055',1,'min_printf.h']]],
['unit_5fvec_1',['unit_vec',['../de/d7b/group__vec__3d.html#ga3cdfd8378a0b115563ea6c561bb46b7e',1,'vectors_3d.c']]],
['user_5fgraph_2',['user_graph',['../d9/dcc/prim_8c.html#addac7a8c7bfd3e5573dad1f6aeff7768',1,'prim.c']]]
['update_2',['update',['../d2/d87/non__preemptive__priority__scheduling_8c.html#a9bc34d3b138bd0153a942cf6a8b31533',1,'non_preemptive_priority_scheduling.c']]],
['user_5fgraph_3',['user_graph',['../d9/dcc/prim_8c.html#addac7a8c7bfd3e5573dad1f6aeff7768',1,'prim.c']]]
];

View File

@ -1,26 +1,29 @@
var searchData=
[
['c_5fatoi_0',['c_atoi',['../d7/dd8/c__atoi__str__to__integer_8c.html#ad19049ebfc2088bc1e75e7e958f7b60f',1,'c_atoi_str_to_integer.c']]],
['calculatecentroid_1',['calculateCentroid',['../d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7',1,'k_means_clustering.c']]],
['calculatenearst_2',['calculateNearst',['../d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9',1,'k_means_clustering.c']]],
['calculatescore_3',['calculateScore',['../db/de2/naval__battle_8c.html#ab6e31f8df36de67ff967859069ccfc56',1,'naval_battle.c']]],
['calloc_5fdbg_4',['calloc_dbg',['../db/d84/malloc__dbg_8c.html#ab07f946b77155ca78d0e14e231a99f5d',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName):&#160;malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#ab07f946b77155ca78d0e14e231a99f5d',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName):&#160;malloc_dbg.c']]],
['canshoot_5',['canShoot',['../db/de2/naval__battle_8c.html#a59224afd73372b4f52415203e315f6e1',1,'naval_battle.c']]],
['check_5fnumber_6',['check_number',['../dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3',1,'check_number(unsigned long long n):&#160;sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f',1,'check_number(unsigned long long n):&#160;sol2.c']]],
['check_5ftermination_7',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]],
['clear_8',['clear',['../df/dfa/vector_8c.html#ab9dfc1249180f1e924b7333a4e5d133a',1,'vector.c']]],
['closefile_9',['closeFile',['../d3/d78/words__alphabetical_8c.html#af1f9b6eb320d872ba0766dc8bd070075',1,'words_alphabetical.c']]],
['collatz_10',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]],
['compare_11',['compare',['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'sol1.c']]],
['complex_5fstr_12',['complex_str',['../da/d38/durand__kerner__roots_8c.html#a46197e91f478e99a2229562aaaac311e',1,'durand_kerner_roots.c']]],
['convert_13',['convert',['../db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1',1,'convert(char infix[], char postfix[]):&#160;infix_to_postfix.c'],['../da/d96/infix__to__postfix2_8c.html#ae363a3863a8bfbf40e7a95c2b9dbe71b',1,'convert(char inf[]):&#160;infix_to_postfix2.c'],['../d0/df3/6_8c.html#afdf3bfe2dc8aadac13c7e6d051d3bd5d',1,'convert(char *in, uint16_t numRows):&#160;6.c']]],
['converted_5flen_14',['converted_len',['../d1/dba/decimal__to__any__base_8c.html#a899b3a7e0f1fac5a465eac0d4b10d711',1,'decimal_to_any_base.c']]],
['convertion_15',['convertion',['../d1/dba/decimal__to__any__base_8c.html#a0c5ccb926a23bc0050f213ba3408e18d',1,'decimal_to_any_base.c']]],
['count_16',['count',['../d1/ded/group__misc.html#ga6f8e8c9d25b5891d57e588d80d75028a',1,'prime_seive.c']]],
['count_5fdivisors_17',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]],
['crc32_18',['crc32',['../d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567',1,'hash_crc32.c']]],
['create_19',['create',['../dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f',1,'doubly_linked_list.c']]],
['create_5fmatrix_20',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]],
['create_5fnode_21',['create_node',['../df/d3c/threaded__binary__trees_8c.html#a4802bca3f38251543b4aba6765e0390d',1,'threaded_binary_trees.c']]],
['create_5fpolynomial_22',['create_polynomial',['../d0/dcb/poly__add_8c.html#a29eace09ec1373a92003075f1c2f6d9d',1,'poly_add.c']]]
['calculate_5fct_1',['calculate_ct',['../d2/d87/non__preemptive__priority__scheduling_8c.html#abbb2446313782dd3ba9ff2a7ad0ce1df',1,'non_preemptive_priority_scheduling.c']]],
['calculate_5ftat_2',['calculate_tat',['../d2/d87/non__preemptive__priority__scheduling_8c.html#a458803d3c3926a6bcc4d51540f297756',1,'non_preemptive_priority_scheduling.c']]],
['calculate_5fwt_3',['calculate_wt',['../d2/d87/non__preemptive__priority__scheduling_8c.html#ae5e4de64ef6c5676d5013d90229a875c',1,'non_preemptive_priority_scheduling.c']]],
['calculatecentroid_4',['calculateCentroid',['../d8/d71/group__k__means.html#gadee39a3f17bf5144df5592e48dbfc9f7',1,'k_means_clustering.c']]],
['calculatenearst_5',['calculateNearst',['../d8/d71/group__k__means.html#gad339c41d3ee9e6729aca9e9ab3f7d2d9',1,'k_means_clustering.c']]],
['calculatescore_6',['calculateScore',['../db/de2/naval__battle_8c.html#ab6e31f8df36de67ff967859069ccfc56',1,'naval_battle.c']]],
['calloc_5fdbg_7',['calloc_dbg',['../db/d84/malloc__dbg_8c.html#ab07f946b77155ca78d0e14e231a99f5d',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName):&#160;malloc_dbg.c'],['../d2/ddd/malloc__dbg_8h.html#ab07f946b77155ca78d0e14e231a99f5d',1,'calloc_dbg(size_t elementCount, size_t elementSize, int line, const char *filename, const char *functionName):&#160;malloc_dbg.c']]],
['canshoot_8',['canShoot',['../db/de2/naval__battle_8c.html#a59224afd73372b4f52415203e315f6e1',1,'naval_battle.c']]],
['check_5fnumber_9',['check_number',['../dc/d32/problem__5_2sol1_8c.html#a24b470eef1ce1da4401c03ae250f93e3',1,'check_number(unsigned long long n):&#160;sol1.c'],['../d5/d3d/problem__5_2sol2_8c.html#aa7cfa5a28d00d93ec48fab9c3fd5812f',1,'check_number(unsigned long long n):&#160;sol2.c']]],
['check_5ftermination_10',['check_termination',['../da/d38/durand__kerner__roots_8c.html#a26d5695ebed0818a3e7cf4b10aacab52',1,'durand_kerner_roots.c']]],
['clear_11',['clear',['../df/dfa/vector_8c.html#ab9dfc1249180f1e924b7333a4e5d133a',1,'vector.c']]],
['closefile_12',['closeFile',['../d3/d78/words__alphabetical_8c.html#af1f9b6eb320d872ba0766dc8bd070075',1,'words_alphabetical.c']]],
['collatz_13',['collatz',['../d4/dea/problem__14_2sol1_8c.html#a81c1df5c17cb16bcc16e346fcff6fa80',1,'sol1.c']]],
['compare_14',['compare',['../d2/d87/non__preemptive__priority__scheduling_8c.html#a01b8ee561d8532a44d665c2c854e0d09',1,'compare(node *a, node *b):&#160;non_preemptive_priority_scheduling.c'],['../d1/df9/problem__26_2sol1_8c.html#ac70138609ef6aa6fabca57aca8681e83',1,'compare(const void *a, const void *b):&#160;sol1.c']]],
['complex_5fstr_15',['complex_str',['../da/d38/durand__kerner__roots_8c.html#a46197e91f478e99a2229562aaaac311e',1,'durand_kerner_roots.c']]],
['convert_16',['convert',['../db/d0c/infix__to__postfix_8c.html#a92af69ffc1e1f965ebce6a44672e96b1',1,'convert(char infix[], char postfix[]):&#160;infix_to_postfix.c'],['../da/d96/infix__to__postfix2_8c.html#ae363a3863a8bfbf40e7a95c2b9dbe71b',1,'convert(char inf[]):&#160;infix_to_postfix2.c'],['../d0/df3/6_8c.html#afdf3bfe2dc8aadac13c7e6d051d3bd5d',1,'convert(char *in, uint16_t numRows):&#160;6.c']]],
['converted_5flen_17',['converted_len',['../d1/dba/decimal__to__any__base_8c.html#a899b3a7e0f1fac5a465eac0d4b10d711',1,'decimal_to_any_base.c']]],
['convertion_18',['convertion',['../d1/dba/decimal__to__any__base_8c.html#a0c5ccb926a23bc0050f213ba3408e18d',1,'decimal_to_any_base.c']]],
['count_19',['count',['../d1/ded/group__misc.html#ga6f8e8c9d25b5891d57e588d80d75028a',1,'prime_seive.c']]],
['count_5fdivisors_20',['count_divisors',['../d7/d1f/problem__12_2sol1_8c.html#aa6ce6271f6156e219f9b290717f5a222',1,'sol1.c']]],
['crc32_21',['crc32',['../d7/d3b/group__hash.html#ga483e7ee6db1dc09a0f3e683e028ec567',1,'hash_crc32.c']]],
['create_22',['create',['../dd/d29/doubly__linked__list_8c.html#a37890fb794cb2c436ffcc643c30ec57f',1,'doubly_linked_list.c']]],
['create_5fmatrix_23',['create_matrix',['../d7/d50/qr__eigen__values_8c.html#a7d96c5e4ae1bd6d29791bcc23a4cb2b0',1,'qr_eigen_values.c']]],
['create_5fnode_24',['create_node',['../df/d3c/threaded__binary__trees_8c.html#a4802bca3f38251543b4aba6765e0390d',1,'threaded_binary_trees.c']]],
['create_5fpolynomial_25',['create_polynomial',['../d0/dcb/poly__add_8c.html#a29eace09ec1373a92003075f1c2f6d9d',1,'poly_add.c']]]
];

View File

@ -4,7 +4,7 @@ var searchData=
['inlist_1',['inList',['../db/d84/malloc__dbg_8c.html#acd08c54b257fb81e57f16c94690072f2',1,'malloc_dbg.c']]],
['inorder_2',['inOrder',['../da/d02/binary__search__tree_8c.html#a0f18adaaca5ecc410cfa16dd2a3684dc',1,'binary_search_tree.c']]],
['inorder_5fdisplay_3',['inorder_display',['../df/d3c/threaded__binary__trees_8c.html#a4c1e06b5f0876ec9c1bd6817f3b7eda7',1,'threaded_binary_trees.c']]],
['insert_4',['insert',['../da/d02/binary__search__tree_8c.html#a031cc98830742bca57c0da81a0fb779f',1,'insert(node *root, int data):&#160;binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918',1,'insert(List *list, double value, int pos):&#160;doubly_linked_list.c']]],
['insert_4',['insert',['../da/d02/binary__search__tree_8c.html#a031cc98830742bca57c0da81a0fb779f',1,'insert(node *root, int data):&#160;binary_search_tree.c'],['../dd/d29/doubly__linked__list_8c.html#a04ac29c396dc8335a5827927183c9918',1,'insert(List *list, double value, int pos):&#160;doubly_linked_list.c'],['../d2/d87/non__preemptive__priority__scheduling_8c.html#a5d0943b2e0e1b48b9c3a575a7f262c36',1,'insert(node **root, int id, int at, int bt, int prior):&#160;non_preemptive_priority_scheduling.c']]],
['insert_5fbt_5',['insert_bt',['../df/d3c/threaded__binary__trees_8c.html#a823432888332fc9f0aa6072cff28c3bb',1,'threaded_binary_trees.c']]],
['insertionsort_6',['insertionSort',['../db/ddf/insertion__sort_8c.html#a0d6c227641a5e0dae580b3a18df241fb',1,'insertion_sort.c']]],
['int_5fto_5fstring_7',['int_to_string',['../dd/d53/int__to__string_8c.html#aeb4be1a1db1c5fea06e9d8b87e6c3973',1,'int_to_string.c']]],
@ -19,7 +19,7 @@ var searchData=
['isempty_16',['isEmpty',['../db/d0c/infix__to__postfix_8c.html#afa8471c76bc57b12ad21de22beb39021',1,'isEmpty(struct Stack s):&#160;infix_to_postfix.c'],['../da/d96/infix__to__postfix2_8c.html#a653c98c68c558505b75b04c44b7c838e',1,'isEmpty():&#160;infix_to_postfix2.c']]],
['isoprnd_17',['isOprnd',['../db/d0c/infix__to__postfix_8c.html#afd8245c04b202240390de23170f72d6b',1,'infix_to_postfix.c']]],
['ispalindrome_18',['isPalindrome',['../df/d16/palindrome_8c.html#a6320493ddee0ca4614423721c5d6f4ba',1,'palindrome.c']]],
['isprime_19',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]],
['isprime_20',['isPrime',['../da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f',1,'prime.c']]],
['isprime_19',['isPrime',['../da/d93/prime_8c.html#a6384596f117decd77da25af95ab1704f',1,'prime.c']]],
['isprime_20',['isprime',['../d7/dd3/problem__3_2sol1_8c.html#aa0f4796aa2e89c327f827bd55f5cb305',1,'sol1.c']]],
['isstrong_21',['isStrong',['../d4/dcc/strong__number_8c.html#a03654cadb0cfe1195810dbe5da0265b5',1,'strong_number.c']]]
];

View File

@ -1,7 +1,8 @@
var searchData=
[
['lazy_5fsort_0',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]],
['lcm_1',['lcm',['../d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol3.c']]],
['len_2',['len',['../df/dfa/vector_8c.html#a6f8a49f17bf315bdc30749a57bc7bc93',1,'vector.c']]],
['lu_5fdecomposition_3',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]]
['l_5flength_0',['l_length',['../d2/d87/non__preemptive__priority__scheduling_8c.html#a40e454ce0750e794007bf41a7102b3a9',1,'non_preemptive_priority_scheduling.c']]],
['lazy_5fsort_1',['lazy_sort',['../dd/d8b/problem__22_2sol1_8c.html#ae359b8a4656b164c91ef91a084c15c9d',1,'sol1.c']]],
['lcm_2',['lcm',['../d5/d7c/problem__5_2sol3_8c.html#ae9606f1867e9921867d6572f51377b4c',1,'sol3.c']]],
['len_3',['len',['../df/dfa/vector_8c.html#a6f8a49f17bf315bdc30749a57bc7bc93',1,'vector.c']]],
['lu_5fdecomposition_4',['lu_decomposition',['../dc/d2e/lu__decompose_8c.html#aae40b90a8efd645c749128cf8072bbb4',1,'lu_decompose.c']]]
];

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
var searchData=
[
['node_0',['node',['../da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node():&#160;binary_search_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node():&#160;threaded_binary_trees.c']]]
['node_0',['node',['../da/d02/binary__search__tree_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node():&#160;binary_search_tree.c'],['../df/d3c/threaded__binary__trees_8c.html#ad8ecdcce462dd8e170ae1f164935aaa6',1,'node():&#160;threaded_binary_trees.c'],['../d2/d87/non__preemptive__priority__scheduling_8c.html#af4aeda155dbe167f1c1cf38cb65bf324',1,'node():&#160;non_preemptive_priority_scheduling.c']]]
];

View File

@ -2,5 +2,6 @@ var searchData=
[
['a_0',['a',['../dc/d18/structsudoku.html#a507f788b793d4d3d6f6a70415be84ded',1,'sudoku']]],
['abundant_5fflags_1',['abundant_flags',['../d4/dbd/problem__23_2sol2_8c.html#af920a16d6ef69dd604b283f427892e06',1,'sol2.c']]],
['atexitcalled_2',['atexitCalled',['../db/d84/malloc__dbg_8c.html#ad04afbbcb9f0f10bc7628ec4f0d7c950',1,'malloc_dbg.c']]]
['at_2',['AT',['../d5/da1/structnode.html#a5507c3c76ddbda9c482749f3a8a8f0cc',1,'node']]],
['atexitcalled_3',['atexitCalled',['../db/d84/malloc__dbg_8c.html#ad04afbbcb9f0f10bc7628ec4f0d7c950',1,'malloc_dbg.c']]]
];

View File

@ -1,5 +1,6 @@
var searchData=
[
['bank_0',['bank',['../d2/de8/structeuler__.html#a34941b75b9bb747cd68d28315fa9691a',1,'euler_']]],
['bytes_1',['bytes',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d',1,'MEMORY_INFORMATION']]]
['bt_1',['BT',['../d5/da1/structnode.html#ac0a6453f996d4c362c015fd4348ecc6e',1,'node']]],
['bytes_2',['bytes',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a7f42967fd6562d77ac03445ea6e36a3d',1,'MEMORY_INFORMATION']]]
];

View File

@ -1,5 +1,6 @@
var searchData=
[
['top_0',['top',['../dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a',1,'Stack']]],
['tos_1',['tos',['../dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9',1,'Stack']]]
['tat_0',['TAT',['../d5/da1/structnode.html#abbe30696293849bebed90520b8cf7ba3',1,'node']]],
['top_1',['top',['../dd/d10/struct_stack.html#ad62fb36816185f3eef3a6f735a61f54a',1,'Stack']]],
['tos_2',['tos',['../dd/d10/struct_stack.html#ac2dbef151bc913684a90b06836725ef9',1,'Stack']]]
];

View File

@ -2,5 +2,6 @@ var searchData=
[
['w_0',['w',['../de/d58/structquaternion__.html#a835e2ba72517fbb29d0d4e3cb4c2914f',1,'quaternion_']]],
['weights_1',['weights',['../d2/daa/structadaline.html#a32e58c03fd9258709eae6138ad0ec657',1,'adaline']]],
['word_2',['word',['../db/d8b/struct_node.html#afa6ccc6414d3e0bcacb715dcdf764bca',1,'Node']]]
['word_2',['word',['../db/d8b/struct_node.html#afa6ccc6414d3e0bcacb715dcdf764bca',1,'Node']]],
['wt_3',['WT',['../d5/da1/structnode.html#a878d22393f374f3861035e35b9edd653',1,'node']]]
];

View File

@ -4,5 +4,6 @@ var searchData=
['combine_1',['combine',['../dd/d06/structsegment__tree.html#a973ab017a97678fdc6774543585897df',1,'segment_tree']]],
['contents_2',['contents',['../d4/d06/struct_vector.html#afd870750f3874ee097833fc8a1dc809e',1,'Vector']]],
['count_3',['count',['../d1/d99/structcluster.html#aaacf0562ee2d9e8866c66ddaa6527c2b',1,'cluster']]],
['current_4',['current',['../d4/d06/struct_vector.html#a8cb577f14bea1a6c1fbf85717b3ee4f9',1,'Vector']]]
['ct_4',['CT',['../d5/da1/structnode.html#aece40a25d30d3e0d2135007642b64882',1,'node']]],
['current_5',['current',['../d4/d06/struct_vector.html#a8cb577f14bea1a6c1fbf85717b3ee4f9',1,'Vector']]]
];

View File

@ -1,4 +1,5 @@
var searchData=
[
['identity_0',['identity',['../dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a',1,'segment_tree']]]
['id_0',['ID',['../d5/da1/structnode.html#ac0c8b57ac0a76d72588561c81481c454',1,'node']]],
['identity_1',['identity',['../dd/d06/structsegment__tree.html#a5373ee53a5ac1cd7a9dcb89a4c23a04a',1,'segment_tree']]]
];

View File

@ -2,7 +2,7 @@ var searchData=
[
['n_0',['N',['../dc/d18/structsudoku.html#a160365012280c3e10f1b31e914e8f129',1,'sudoku']]],
['n2_1',['N2',['../dc/d18/structsudoku.html#a0f01e2782e82306e6fab9a8578006f56',1,'sudoku']]],
['next_2',['next',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007',1,'MEMORY_INFORMATION::next()'],['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set::next()'],['../df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a',1,'term::next()']]],
['next_2',['next',['../d5/da1/structnode.html#a111a569ab2765add9b91c9f94cf9f063',1,'node::next()'],['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#aa296b903d0e2ac54acaa7c305bae8007',1,'MEMORY_INFORMATION::next()'],['../d9/dd7/struct__cantor__set.html#a2f7f9f19125725d3e5673fdb4ac8cfb1',1,'_cantor_set::next()'],['../df/d86/structterm.html#ab7ac49a58cc431c9838c855bf59a243a',1,'term::next()']]],
['next_5fdigit_3',['next_digit',['../dc/d77/struct__big__int.html#a187538b984c86d7cfdb13e297e7f3564',1,'_big_int']]],
['num_5fdigits_4',['num_digits',['../d3/d5a/struct__large__num.html#a3fd11c0b413bbabfb8737d4ae73e5aa0',1,'_large_num']]],
['num_5fweights_5',['num_weights',['../d2/daa/structadaline.html#a53314e737a0a5ff4552a03bcc9dafbc1',1,'adaline']]]

View File

@ -5,5 +5,6 @@ var searchData=
['prev_2',['prev',['../d8/d10/structlist.html#a2054c799f7580787a500df82d14ace25',1,'list']]],
['prev_5fdigit_3',['prev_digit',['../dc/d77/struct__big__int.html#ad8405989a924410942b39ec0e9fef30b',1,'_big_int']]],
['previous_4',['previous',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a1cec46413acf776e3ee2b0b9241490c3',1,'MEMORY_INFORMATION']]],
['ptr_5',['ptr',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde',1,'MEMORY_INFORMATION']]]
['priority_5',['priority',['../d5/da1/structnode.html#a44e51013eb31fc1f17866ca9fe8ac75b',1,'node']]],
['ptr_6',['ptr',['../d4/d73/struct_m_e_m_o_r_y___i_n_f_o_r_m_a_t_i_o_n.html#a6b0971c1415de6e0123b8d0d0a626fde',1,'MEMORY_INFORMATION']]]
];