码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode295

时间:2019-03-07 23:17:53      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:ret   style   structure   todo   new   init   insert   i++   lse   

 1 public class MedianFinder
 2     {
 3         List<int> list = null;
 4         int count = 0;
 5         /** initialize your data structure here. */
 6         public MedianFinder()
 7         {
 8             this.list = new List<int>();
 9         }
10 
11         public void AddNum(int num)
12         {
13             if (list.Count == 0)
14             {
15                 list.Add(num);
16             }
17             else
18             {
19                 if (num <= list[0])
20                 {
21                     list.Insert(0, num);
22                 }
23                 else if (num >= list[list.Count - 1])
24                 {
25                     list.Add(num);
26                 }
27                 else
28                 {
29                     for (int i = 0; i < list.Count; i++)
30                     {
31                         if (num >= list[i] && num <= list[i + 1])
32                         {
33                             list.Insert(i + 1, num);
34                             break;
35                         }
36                     }
37                 }
38             }
39             count++;
40         }
41 
42         public double FindMedian()
43         {
44             var mid = count / 2;
45             var re = count % 2;
46             if (re == 0)
47             {
48                 var a = mid - 1;
49                 var b = mid;
50                 return Convert.ToDouble(list[a] + list[b]) / 2;
51             }
52             else
53             {
54                 return Convert.ToDouble(list[mid]);
55             }
56         }
57     }

 

leetcode295

标签:ret   style   structure   todo   new   init   insert   i++   lse   

原文地址:https://www.cnblogs.com/asenyang/p/10493256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!