zoukankan      html  css  js  c++  java
  • Two star programming

    A few weeks ago Linus Torvalds answered some questions on slashdot. All his responses make good reading but one in particular caught my eye. Asked to describe his favourite kernel hack, Torvalds grumbles he rarely looks at code these days — unless it’s to sort out someone else’s mess. He then pauses to admit he’s proud of the kernel’s fiendishly cunning filename lookup cache before continuing to moan about incompetence.

    At the opposite end of the spectrum, I actually wish more people understood the really core low-level kind of coding. Not big, complex stuff like the lockless name lookup, but simply good use of pointers-to-pointers etc. For example, I’ve seen too many people who delete a singly-linked list entry by keeping track of theprev entry, and then to delete the entry, doing something like

    if (prev)
        prev->next = entry->next;
    else
        list_head = entry->next;
    

    and whenever I see code like that, I just go “This person doesn’t understand pointers”. And it’s sadly quite common.

    People who understand pointers just use a “pointer to the entry pointer”, and initialize that with the address of the list_head. And then as they traverse the list, they can remove the entry without using any conditionals, by just doing a*pp = entry->next.

    Well I thought I understood pointers but, sad to say, if asked to implement a list removal function I too would have kept track of the previous list node. Here’s a sketch of the code:

    This person doesn’t understand pointers
    typedefstruct node
    {
       
    struct node *next;
       
    ....
    } node;

    typedefbool(* remove_fn)(node const* v);

    // Remove all nodes from the supplied list for which the
    // supplied remove function returns true.
    // Returns the new head of the list.
    node
    * remove_if(node * head, remove_fn rm)
    {
       
    for(node * prev = NULL,* curr = head; curr != NULL;)
       
    {
            node
    *constnext= curr->next;
           
    if(rm(curr))
           
    {
               
    if(prev)
                    prev
    ->next=next;
               
    else
                    head
    =next;
                free
    (curr);
           
    }
           
    else
                prev
    = curr;
            curr
    =next;
       
    }
       
    return head;
    }

    The linked list is a simple but perfectly-formed structure built from nothing more than a pointer-per-node and a sentinel value, but the code to modify such lists can be subtle. No wonder linked lists feature in so many interview questions!

    The subtlety in the implementation shown above is the conditional required to handle any nodes removed from the head of the list.

    Now let’s look at the implementation Linus Torvalds had in mind. In this case we pass in a pointer to the list head, and the list traversal and modification is done using a pointer to the next pointers.

    Two star programming
    void remove_if(node ** head, remove_fn rm)
    {
       
    for(node** curr = head;*curr;)
       
    {
            node
    * entry =*curr;
           
    if(rm(entry))
           
    {
               
    *curr = entry->next;
                free
    (entry);
           
    }
           
    else
                curr
    =&entry->next;
       
    }
    }

    Much better! The key insight is that the links in a linked list are pointers and so pointers to pointers are the prime candidates for modifying such a list.

    §

    The improved version of remove_if() is an example of two star programming: the doubled-up asterisks indicate two levels of indirection. A third star would be one too many.

    原文:http://wordaligned.org/articles/two-star-programming 

  • 相关阅读:
    破解登录手机验证码思路
    自媒体平台越来越多,取舍之后我只推荐这7家平台
    微信小程序:JS 交互逻辑
    微信小程序:WXSS 样式
    微信小程序:WXML 模板
    微信小程序:页面配置 page.json
    SQLServer创建维护计划失败 错误c001f011
    远程连接提示要求的函数不受支持如何解决
    安装 SQLManagementStudio_x86_CHS(SQL Server Management Studio) 老提示重启的解决办法
    数据库属性
  • 原文地址:https://www.cnblogs.com/feisky/p/2891652.html
Copyright © 2011-2022 走看看