对线索会话进行排序

时间:2014-12-02 00:15:19

标签: javascript python sql postgresql sorting

不确定如何构建这个,但是这里就是。

这是一个排序算法问题

我必须使用的工具是服务器上的PostgresSQL和python(2.6)以及浏览器端的javascript / jquery

我需要将描述线索对话的数据从postgres数据库移动到网页。数据按时间顺序开始,我想在线程中显示

记录数量很小 - 不应该返回超过100条消息

因此,作为一个简单的例子,想象一下表:

ID     Reply_To   Text
===    ========   =============================
1      0          Hello World
2      0          Make me a sandwich
3      1          Hello back
4      2          No chance
5      1          Who are you?
6      5          Me of course

我想要达到的终点是

      
  • Hello World
  •   
          
    • 你好回来
    •   
      
          
    • 你是谁?
    •     
              
      • 我当然是
      •     
        
      
  • 让我成为三明治
  •   
          
    • 没有机会
    •   

或者,换句话说......

ID     Reply_To   Text
===    ========   =============================
1      0          Hello World
3      1          Hello back
5      1          Who are you?
6      5          Me of course
2      0          Make me a sandwich
4      2          No chance

我不是在这里完整的解决方案,所有的ajax,json和格式化的东西我很乐意继续使用。

我只是在解决管理排序的最佳方法时遇到了问题。

SQL?蟒蛇?的Javascript?

我目前正在使用Javascript中的数组排序(没有比我的python技能特别弱的事实更好的理由)

EDIT 目前我的情况如下:

function byThread(a,b) {
  if (a.reply > b.id && a.reply != 0){
    console.log("Compared id=" + a.id + " with id=" + b.id + " and returned -1 ")
    return -1;
  }
  if (a.id > b.reply && b.reply != 0 ){
    console.log("Compared id=" + a.id + " with id=" + b.id + " and returned 1 ")
    return 1;
  }
  console.log("Compared id=" + a.id + " with id=" + b.id + " and returned 0 ")
  return 0;
}
msg.sort(byThread);

这令人沮丧地接近

3 个答案:

答案 0 :(得分:2)

我试图在纯sql中执行此操作,因为我认为这是逻辑应该属于的地方。你需要做的是找到从父到子的id列表,并按顺序排序。幸运的是,postgres有可以订购的数组类型,所以我们可以使用递归CTE:

with recursive threaded(id, reply_to, message, order_path) as (
    select 
        parent.id, 
        parent.reply_to, 
        parent.message, 
        NULL::int[] || parent.id -- create an 1-element array with the parent id
    from conversation parent
    where parent.reply_to is null
    UNION ALL
    select 
        reply.id, 
        reply.reply_to, 
        reply.message, 
        t.order_path || reply.id -- append the reply id to the current path
    from threaded t
    join conversation reply on t.id = reply.reply_to
    where reply.reply_to is not null
)
select * from threaded order by order_path;

结果:

1    NULL    "Hello World"          "{1}"
3    1       "Hello Back"           "{1,3}"
5    1       "Who are you?"         "{1,5}"
6    5       "Me of course"         "{1,5,6}"
2    NULL    "Make me a sandwich"   "{2}"
4    2       "No Chance"            "{2,4}"

我不确定这会如何表现,所以你一定要在你的真实数据集上测试和分析它,以确保它没问题。如果不是,也许您可​​以考虑重构数据,并研究在数据库中存储“树”数据的不同方法。 django有一个名为django-mptt的库,可以有效地存储和检索树。这个概念一般适用于数据库,但是用于提取树并确保它们保持不变的算法需要更改应用程序逻辑,更好地由库来处理。

编辑:

我应该提一下,我最初只使用“order_path”的顶级id作为单个数字。 This answer让我使用一系列ID来保证订单一直向下。

答案 1 :(得分:1)

你可以在JS方面尝试这样的东西。由于回复内部有回复,因此可以轻松地从convoSorted

构建DOM
var convo = [{id: 1, replyTo: 0, text: "hello world"}, 
             {id: 2, replyTo: 0, text: "Make me a sandwich"},
             {id: 3, replyTo: 1, text: "hello back"},
             {id: 4, replyTo: 2, text: "no chance"},
             {id: 5, replyTo: 1, text: "who are you?"},
             {id: 6, replyTo: 5, text: "me of course"},
             {id: 7, replyTo: 0, text: "new question"},
             {id: 8, replyTo: 7, text: "new answer"}];

var convoSorted = [];

function addToReplies(obj, rply){ //recursive function to find the q. to reply to.
  if (obj.id == rply.replyTo){
    obj.replies.push({id: rply.id, text: rply.text, replies: []}); //add to the replies array
  }
  else{
      for (k = 0; k < obj.replies.length; k++){
        addToReplies(obj.replies[k], rply);
      }
  }
}

function sortConvo(){

  for (i = 0; i < convo.length; i++){
    if (convo[i].replyTo == 0){ //if it's not a reply, add to sorted array
      convoSorted.push({ id : convo[i].id, text: convo[i].text, replies: [] });
    }
    else{ //it's a reply, find the question it's replying
      for (j = 0; j < convoSorted.length; j++){
          addToReplies(convoSorted[j], convo[i]);
      }
    }
  }
}

sortConvo();
console.log(convoSorted);

答案 2 :(得分:0)

我觉得自己是个白痴 - 我过度复杂了。

所需要的只是一些横向思考(这个讨论有助于)

msgs=[
  {id:1,reply:0,msg:'Hello World'},
  {id:2,reply:0,msg:'Make me a sandwich'},
  {id:3,reply:1,msg:'Hello back'},
  {id:4,reply:2,msg:'No chance'},
  {id:5,reply:1,msg:'Who are you?'},
  {id:6,reply:5,msg:'Me of course'}
];
msgs.sort(function(a,b){
  return a.reply - b.reply;
});

var conversation=$("<div id='threaded'>");
var list = $("<ul>")
  .attr("id","thread_" + msgs[0].reply);
var message = $("<li>")
  .text(msgs[0].msg)
  .attr("id","msg_" + msgs[0].id);
$(list).append(message);
$(conversation).append(list);

for (i=1; i<msgs.length; i++){
  var message = $("<li>")
    .text(msgs[i].msg)
    .attr("id","msg_" + msgs[i].id);
  if ($(conversation).find("#msg_" + msgs[i].reply).length == 0){
    $(conversation).find("ul:eq(0)").append(message);
  } else {
    var list = $("<ul>")
      .attr("id","thread_" + msgs[i].id);
    $(list).append(message);
    $(conversation).find("#msg_" + msgs[i].reply).append(list);
  }
}

有时候我会忘记dom是一个强大的工具